We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1373845 commit 2bb7d73Copy full SHA for 2bb7d73
src/pfasst/controller/sdc_impl.hpp
@@ -22,7 +22,7 @@ namespace pfasst
22
void SDC<time>::run()
23
{
24
auto sweeper = this->get_level(0);
25
-
+
26
for (; this->get_time() < this->get_end_time(); this->advance_time()) {
27
bool initial = this->get_step() == 0;
28
for (this->set_iteration(0);
@@ -41,7 +41,9 @@ namespace pfasst
41
}
42
43
sweeper->post_step();
44
- if(this->get_time() + this->get_time_step() < this->get_end_time()) sweeper->advance();
+ if (this->get_time() + this->get_time_step() < this->get_end_time()) {
45
+ sweeper->advance();
46
+ }
47
48
49
} // ::pfasst
0 commit comments