Skip to content
Snippets Groups Projects
Commit 48150c7e authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Also initialise the largest active bin in the test suite examples.

parent ffd935c5
No related branches found
No related tags found
No related merge requests found
...@@ -532,6 +532,7 @@ int main(int argc, char *argv[]) { ...@@ -532,6 +532,7 @@ int main(int argc, char *argv[]) {
engine.s = &space; engine.s = &space;
engine.time = 0.1f; engine.time = 0.1f;
engine.ti_current = 8; engine.ti_current = 8;
engine.max_active_bin = num_time_bins;
struct runner runner; struct runner runner;
runner.e = &engine; runner.e = &engine;
......
...@@ -396,6 +396,7 @@ int main(int argc, char *argv[]) { ...@@ -396,6 +396,7 @@ int main(int argc, char *argv[]) {
engine.s = &space; engine.s = &space;
engine.time = 0.1f; engine.time = 0.1f;
engine.ti_current = 8; engine.ti_current = 8;
engine.max_active_bin = num_time_bins;
struct runner runner; struct runner runner;
runner.e = &engine; runner.e = &engine;
......
...@@ -252,6 +252,7 @@ int main(int argc, char *argv[]) { ...@@ -252,6 +252,7 @@ int main(int argc, char *argv[]) {
engine.s = &space; engine.s = &space;
engine.time = 0.1f; engine.time = 0.1f;
engine.ti_current = 8; engine.ti_current = 8;
engine.max_active_bin = num_time_bins;
runner.e = &engine; runner.e = &engine;
volume = particles * particles * particles; volume = particles * particles * particles;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment