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

Comparing jsr166/src/test/loops/FibTask.java (file contents):
Revision 1.3 by jsr166, Sat Oct 16 16:22:56 2010 UTC vs.
Revision 1.7 by jsr166, Thu Jan 15 18:34:19 2015 UTC

# Line 1 | Line 1
1 + /*
2 + * Written by Doug Lea with assistance from members of JCP JSR-166
3 + * Expert Group and released to the public domain, as explained at
4 + * http://creativecommons.org/publicdomain/zero/1.0/
5 + */
6 +
7   import java.util.concurrent.*;
8  
9   /**
# Line 33 | Line 39 | public final class FibTask extends Recur
39          }
40  
41          for (int reps = 0; reps < 2; ++reps) {
42 <            ForkJoinPool g = procs == 0? new ForkJoinPool() :
42 >            ForkJoinPool g = (procs == 0) ? new ForkJoinPool() :
43                  new ForkJoinPool(procs);
44              lastStealCount = g.getStealCount();
45              for (int i = 0; i < 20; ++i) {
# Line 45 | Line 51 | public final class FibTask extends Recur
51          }
52      }
53  
48
54      /** for time conversion */
55      static final long NPS = (1000L * 1000 * 1000);
56  
# Line 66 | Line 71 | public final class FibTask extends Recur
71          System.out.println();
72      }
73  
69
74      // Initialized with argument; replaced with result
75      int number;
76  
# Line 102 | Line 106 | public final class FibTask extends Recur
106          return r;
107      }
108   }
105

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines