blob: b41c8842f70a8464b6fc490303bbd630fc1507ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public aspect Logger {
after(): call(* approximate(..)) {
if (CalculatePI.iteration%10000==0)
System.out.println("Approximation is now:"+
(CalculatePI.inCircle/CalculatePI.inSquare)*4.0f);
}
}
|