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

Comparing jsr166/src/test/extra166y/LongSetOpsDemo.java (file contents):
Revision 1.2 by jsr166, Mon Nov 16 04:16:43 2009 UTC vs.
Revision 1.5 by jsr166, Tue Mar 15 19:47:04 2011 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 16 | Line 16 | class LongSetOpsDemo {
16      static int reps = 16;
17      static final long maxValue = 1 << 12;
18  
19 <    public static void main (String[] args) throws Exception {
19 >    public static void main(String[] args) throws Exception {
20          int n = 1 << 20;
21          long[] a = new long[n];
22          ParallelLongArray pa = ParallelLongArray.createUsingHandoff(a, fjpool);
# Line 288 | Line 288 | class LongSetOpsDemo {
288          return u;
289      }
290  
291 <    static void checkSorted (ParallelLongArray pa)  {
291 >    static void checkSorted(ParallelLongArray pa) {
292          int n = pa.size();
293          for (int i = 0; i < n - 1; i++) {
294              if (pa.get(i) >= pa.get(i+1)) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines