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

Comparing jsr166/src/test/loops/FJJacobi.java (file contents):
Revision 1.11 by dl, Mon Apr 9 13:18:06 2012 UTC vs.
Revision 1.12 by jsr166, Thu Jan 15 18:34:19 2015 UTC

# Line 77 | Line 77 | public class FJJacobi {
77          }
78      }
79  
80
80      abstract static class MatrixTree extends RecursiveAction {
81          // maximum difference between old and new values
82          double maxDiff;
# Line 98 | Line 97 | public class FJJacobi {
97  
98      }
99  
101
100      static final class LeafNode extends MatrixTree {
101          final double[][] A; // matrix to get old values from
102          final double[][] B; // matrix to put new values into
# Line 162 | Line 160 | public class FJJacobi {
160          }
161      }
162  
165
163      static final class TwoNode extends MatrixTree {
164          final MatrixTree q1;
165          final MatrixTree q2;
# Line 178 | Line 175 | public class FJJacobi {
175  
176      }
177  
181
178      static final class Driver extends RecursiveAction {
179          MatrixTree mat;
180          double[][] A; double[][] B;
# Line 250 | Line 246 | public class FJJacobi {
246              System.out.println("max diff after " + steps + " steps = " + md);
247          }
248      }
253
254
249   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines