#ifndef CONFIG_H
#define CONFIG_H

#include <stdbool.h>

const char* SIMULATION_NAME = "Configuration test";
const bool SIMULATION_OUTPUT = true;
const double BOX_HEIGHT = 15.0;
const int NUM_CELLS = 100;
const float BOX_WIDTH = 12.0;
const long double DENSITY = 23.0;
const unsigned long long int NUM_GROUPS = 2399495729;

#endif /* CONFIG_H */