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

Comparing jsr166/src/test/loops/CCJacobi.java (file contents):
Revision 1.3 by dl, Thu Aug 16 12:26:27 2012 UTC vs.
Revision 1.4 by jsr166, Thu Jan 15 18:34:18 2015 UTC

# Line 77 | Line 77 | public class CCJacobi {
77          }
78      }
79  
80
80      abstract static class MatrixTree extends CountedCompleter<Void> {
81          // maximum difference between old and new values
82          double maxDiff;
83          MatrixTree(CountedCompleter<?> p, int c) { super(p, c); }
84      }
85  
87
86      static final class LeafNode extends MatrixTree {
87          final double[][] A; // matrix to get old values from
88          final double[][] B; // matrix to put new values into
# Line 158 | Line 156 | public class CCJacobi {
156          }
157      }
158  
161
159      static final class TwoNode extends MatrixTree {
160          MatrixTree q1;
161          MatrixTree q2;
# Line 260 | Line 257 | public class CCJacobi {
257              System.out.println("max diff after " + steps + " steps = " + md);
258          }
259      }
263
264
260   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines