#ifndef PARTICLE_CELL #define PARTICLE_CELL #include <stddef.h> struct Cell { float pheromone{}; float result{}; int population{}; }; #endif // PARTICLE_CELL