Cell.hpp 190 B

123456789101112131415
  1. #ifndef PARTICLE_CELL
  2. #define PARTICLE_CELL
  3. #include <stddef.h>
  4. struct alignas(32) Cell
  5. {
  6. float pheromone{};
  7. float result{};
  8. int population{};
  9. };
  10. #endif // PARTICLE_CELL