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 e7e34f5 commit 343a187Copy full SHA for 343a187
include/integrators/ode/dop853.hpp
@@ -1,4 +1,12 @@
1
2
+#pragma once
3
+#include <core/adaptive_integrator.hpp>
4
+#include <core/state_creator.hpp>
5
+#include <cmath>
6
+#include <stdexcept>
7
+
8
+namespace diffeq::integrators::ode {
9
10
template<system_state S, can_be_time T>
11
class DOP853Integrator;
12
@@ -30,13 +38,7 @@ class DOP853DenseOutputHelper {
30
38
return result;
31
39
}
32
40
};
33
-#pragma once
34
-#include <core/adaptive_integrator.hpp>
35
-#include <core/state_creator.hpp>
36
-#include <cmath>
37
-#include <stdexcept>
41
-namespace diffeq::integrators::ode {
42
43
/**
44
* @brief DOP853 (Dormand-Prince 8(5,3)) adaptive integrator
0 commit comments