Skip to content

Commit 343a187

Browse files
committed
move DOP853DenseOutputHelper to inside diffeq::integrators::ode namespace
1 parent e7e34f5 commit 343a187

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

include/integrators/ode/dop853.hpp

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

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+
210
template<system_state S, can_be_time T>
311
class DOP853Integrator;
412

@@ -30,13 +38,7 @@ class DOP853DenseOutputHelper {
3038
return result;
3139
}
3240
};
33-
#pragma once
34-
#include <core/adaptive_integrator.hpp>
35-
#include <core/state_creator.hpp>
36-
#include <cmath>
37-
#include <stdexcept>
3841

39-
namespace diffeq::integrators::ode {
4042

4143
/**
4244
* @brief DOP853 (Dormand-Prince 8(5,3)) adaptive integrator

0 commit comments

Comments
 (0)