From: Vinicius P. <vin...@gm...> - 2008-08-13 22:22:31
|
Hi, I'm having problems in getting the amount of computation executed so far. The method Gridlet.getGridletFinishedSoFar() always return 0. Just when the Gridlet has finished is that it returns the size of the gridlet, what is useless at this point. My code something like: while(gridletNotFinished()) { double amount = gridlet.getGridletFinishedSoFar(); System.out.println("FinishedSofar: " + amount); } Is there something there I have to do in order to get this method working properly? Thanks in advance, Vinicius Pinheiro |