Skip to content

Commit fc47125

Browse files
committed
imex: Tidy includes.
1 parent b27bfb6 commit fc47125

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

include/pfasst/encap/imex_sweeper.hpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
#ifndef _PFASST_ENCAP_IMEX_SWEEPER_HPP_
22
#define _PFASST_ENCAP_IMEX_SWEEPER_HPP_
33

4-
#include <vector>
54
#include <memory>
6-
using namespace std;
5+
#include <vector>
76

87
#include "pfasst/encap/encapsulation.hpp"
98
#include "pfasst/encap/encap_sweeper.hpp"
10-
#include "pfasst/encap/vector.hpp"
119

10+
using namespace std;
1211

1312
namespace pfasst
1413
{
@@ -21,12 +20,12 @@ namespace pfasst
2120
*
2221
* This IMEX sweeper is for ODEs of the form
2322
* \\( \\dot{U} = F_{\\rm expl}(t,U) + F_{\\rm impl}(t, U) \\).
24-
* To reduce complexity and computational effort the non-stiff part is treated explicitly and
23+
* To reduce complexity and computational effort the non-stiff part is treated explicitly and
2524
* the stiff part implicitly.
2625
*
27-
* This sweeper requires three interfaces to be implemented: two routines to evaluate the
28-
* explicit \\( F_{\\rm expl} \\) and implicit \\( F_{\\rm impl} \\) pieces for a given state,
29-
* and one routine that solves (perhaps with an external solver) the backward-Euler equation
26+
* This sweeper requires three interfaces to be implemented: two routines to evaluate the
27+
* explicit \\( F_{\\rm expl} \\) and implicit \\( F_{\\rm impl} \\) pieces for a given state,
28+
* and one routine that solves (perhaps with an external solver) the backward-Euler equation
3029
* \\( U^{n+1} - \\Delta t F_{\\rm impl}(U^{n+1}) = RHS \\) for \\( U^{n+1} \\).
3130
*
3231
* @tparam time precision type of the time dimension

0 commit comments

Comments
 (0)