-
Create a build directory:
mkdir build
-
Move into the build directory:
cd build
-
Run CMake to configure the project:
cmake ..
-
Compile the project:
make
-
Run the program:
./src/main (num points) (steps) (alg)
- alg = 1: Fuerza Bruta
- alg = 2: Barnes-Hut
- alg = 3: DEBUG mode (comparison between algorithms)