You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Logger.aj 220B

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