--- jsr166/src/test/loops/FJPhaserJacobi.java 2009/10/30 14:15:04 1.4 +++ jsr166/src/test/loops/FJPhaserJacobi.java 2009/11/02 23:55:36 1.5 @@ -143,8 +143,8 @@ public class FJPhaserJacobi { public void compute() { int rows = hiRow - loRow + 1; int cols = hiCol - loCol + 1; - int rblocks = (int)(Math.round((float)rows / dimGran)); - int cblocks = (int)(Math.round((float)cols / dimGran)); + int rblocks = Math.round((float)rows / dimGran); + int cblocks = Math.round((float)cols / dimGran); int n = rblocks * cblocks;