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

Comparing jsr166/src/test/loops/LU.java (file contents):
Revision 1.2 by jsr166, Mon Sep 20 20:42:37 2010 UTC vs.
Revision 1.6 by jsr166, Wed Jul 4 20:07:02 2012 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/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   //import jsr166y.*;
# Line 12 | Line 12 | import java.util.concurrent.TimeUnit;
12   /**
13   * LU matrix decomposition demo
14   * Based on those in Cilk and Hood
15 < **/
16 <
15 > */
16   public final class LU {
17  
18      /** for time conversion */
# Line 46 | Line 45 | public final class LU {
45              System.out.println(usage);
46              return;
47          }
48 <        ForkJoinPool pool = procs == 0? new ForkJoinPool() :
48 >        ForkJoinPool pool = (procs == 0) ? new ForkJoinPool() :
49              new ForkJoinPool(procs);
50          System.out.println("procs: " + pool.getParallelism() +
51                             " n: " + n + " runs: " + runs);
# Line 380 | Line 379 | public final class LU {
379              thr.invoke();
380          }
381      }
383
384
385
382   }
387

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines