ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/IntegerMax.java
(Generate patch)

Comparing jsr166/src/test/loops/IntegerMax.java (file contents):
Revision 1.4 by jsr166, Fri Mar 22 19:54:16 2013 UTC vs.
Revision 1.5 by jsr166, Tue Jun 18 19:17:10 2013 UTC

# Line 173 | Line 173 | public class IntegerMax {
173      static long itest(Collection<Integer> c, int max, int trials) throws Exception {
174          if (c == null) throw new Error();
175          Thread.sleep(250);
176 <        long tlast =  System.nanoTime();
176 >        long tlast = System.nanoTime();
177          for (int i = 0; i < trials; ++i) {
178              Integer pmax = Integer.valueOf(Integer.MIN_VALUE - checksum.get());
179              for (Integer x : c)
# Line 186 | Line 186 | public class IntegerMax {
186      static long stest(Collection<Integer> c, int max, int trials) throws Exception {
187          if (c == null) throw new Error();
188          Thread.sleep(250);
189 <        long tlast =  System.nanoTime();
189 >        long tlast = System.nanoTime();
190          for (int i = 0; i < trials; ++i) {
191              int pmax = c.stream().reduce
192                  (Integer.valueOf(Integer.MIN_VALUE - checksum.get()), MAX);
# Line 198 | Line 198 | public class IntegerMax {
198      static long ptest(Collection<Integer> c, int max, int trials) throws Exception {
199          if (c == null) throw new Error();
200          Thread.sleep(250);
201 <        long tlast =  System.nanoTime();
201 >        long tlast = System.nanoTime();
202          for (int i = 0; i < trials; ++i) {
203              int pmax = c.parallelStream().reduce
204                  (Integer.valueOf(Integer.MIN_VALUE - checksum.get()), MAX);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines