Skip to content

Commit

Permalink
First release :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
ermteri committed Jan 2, 2018
1 parent ede1fc6 commit 78f8f28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/se/torsteneriksson/epidemicsimulation/Utilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ public void reportResult(int numberOfInfectedAccumulated,
int numberOfGetInfected,
int numberOfDied,
int numberOfRecovered) {
/*System.out.println("InfectedAccu:" + numberOfInfectedAccumulated +
System.out.println("InfectedAccu:" + numberOfInfectedAccumulated +
", Dead accu:" + numberOfDeadAccumulated+
", Ill:" + numberOfIll +
", Infected:"+numberOfGetInfected +
", Died:" + numberOfDied +
", Recovered:"+ numberOfRecovered);*/
", Recovered:"+ numberOfRecovered);
}

public void reportDay(Population population) {
Expand All @@ -58,6 +58,6 @@ public void reportDay(Population population) {
if(hb.isImmune())
numImmune++;
}
System.out.printf("%d,%d,%d,%d\n",numHealthy,numSick,numImmune,numDead);
//System.out.printf("%d,%d,%d,%d\n",numHealthy,numSick,numImmune,numDead);
}
}

0 comments on commit 78f8f28

Please sign in to comment.