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

Comparing jsr166/src/jsr166y/RecursiveTask.java (file contents):
Revision 1.1 by dl, Tue Jan 6 14:30:31 2009 UTC vs.
Revision 1.2 by jsr166, Mon Jul 20 21:45:06 2009 UTC

# Line 31 | Line 31 | package jsr166y;
31   * subtasks are too small to be worthwhile splitting up. Instead, as
32   * is the case for nearly all fork/join applications, you'd pick some
33   * minimum granularity size (for example 10 here) for which you always
34 < * sequentially solve rather than subdividing.  
34 > * sequentially solve rather than subdividing.
35   *
36   */
37   public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
# Line 48 | Line 48 | public abstract class RecursiveTask<V> e
48      V result;
49  
50      /**
51 <     * The main computation performed by this task.
51 >     * The main computation performed by this task.
52       */
53      protected abstract V compute();
54  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines