1 #ifndef BRUTEFORCEALGORITHM_H
2 #define BRUTEFORCEALGORITHM_H
6 #define _USE_MATH_DEFINES
61 void calculateNextTimestep();
64 #endif // BRUTEFORCEALGORITHM_H
BruteForceAlgorithm(int xIn, int yIn, int numParticles)
Constructs a 2d BruteForceAlgorithm.
Definition: bruteforcealgorithm.cpp:4
The Algorithm class is a parent to all the specific Algorithms we test.
Definition: algorithm.h:16
The BruteForceAlgorithm class executes the simple O(n^2) method.
Definition: bruteforcealgorithm.h:16