// Constantes const int worldSize = 20; const int nbGen = 100; const int nbIndiv = 100; const int nbGenes = 100; // Nombre de genes // Types de bases typedef struct { int x; int y; } t_Point; typedef struct { int genes[nbGenes]; int longueur; } t_Indiv;