Images are now saved and you can have randomized values at the generation and a name can be chooen for the simulation
This commit is contained in:
@@ -197,10 +197,11 @@ namespace PropagationRemasteredBeta
|
||||
});
|
||||
});
|
||||
|
||||
//Parallel.ForEach(PeopleToCheck, target =>
|
||||
foreach (Human target in PeopleToCheck)
|
||||
{
|
||||
Population[target.Position.X,target.Position.Y] = target.CheckInfection(InfectionRate,Rnd);
|
||||
}
|
||||
Population[target.Position.X, target.Position.Y] = target.CheckInfection(InfectionRate, Rnd);
|
||||
}//);
|
||||
foreach (Human target in InfectedsToCheck)
|
||||
{
|
||||
Population[target.Position.X, target.Position.Y] = target.CheckDeath(DeathRate,CureTime,Rnd);
|
||||
|
||||
Reference in New Issue
Block a user