Skip to content
Snippets Groups Projects
Commit c6766eb9 authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

output dt and nSteps

parent 5217dcfc
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,9 @@ int main(int argc, char** argv) {
double dt = 0.000005;
unsigned nSteps = 120;
std::cout << "dt = " << dt << std::endl;
std::cout << "nSteps = " << nSteps << std::endl;
nBodySim sim(datafile);
// double* positions = sim.getPositions();
unsigned N = sim.getNParticles();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment