#ifndef PARTICLE_CELL #define PARTICLE_CELL #include struct alignas(32) Cell { float pheromone{}; float result{}; int population{}; }; #endif // PARTICLE_CELL