Change the humans per case number and the number of water cases

This commit is contained in:
Shadow15510 2021-07-02 18:08:10 +02:00
parent 53ba4ad842
commit e7192e45e5
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
#define NB_PLANES 5
// Number of non-infectable cases
#define BLANK_CASES 5382
#define BLANK_CASES 47204
struct grid
{

View File

@ -4,7 +4,7 @@
#include "core.h"
// humans per case of the epidemic grid
#define HUMANS_PER_CASE 1000000
#define HUMANS_PER_CASE 140000
// can_become_infected : return 0 if the case (i, j) isn't infectable, 1 else
bool can_become_infected(const struct grid epidemic_grid, const int mutations_selected[3], const int i, const int j);