11{%
if LOAD_BALANCER!=
"" -%}
12#include "{{LOAD_BALANCER | replace('::', '/') }}.h"
19{%
for item in SOLVERS -%}
20#include "{{ item[0] }}.h"
21{# Comment to ensure that jinja2 adds
a new line#}
25{%
for item in NAMESPACE -%}
26 namespace {{ item }} {
29 {%
for item in SOLVERS -%}
30 extern {{ item[0] }} {{ item[1] }};
31 {# Comment to ensure that jinja2 adds
a new line#}
35 extern ::exahype2::RefinementControl refinementControl;
36 extern ::exahype2::PlotFilter plotFilter;
38 {%
if LOAD_BALANCER!=
"" -%}
39 extern {{LOAD_BALANCER}} loadBalancer;
56 double getMinTimeStamp();
66 double getMaxTimeStamp();
67 double getMinTimeStepSize();
68 double getMaxTimeStepSize();
69 double getMinMeshSize();
70 double getMaxMeshSize();
75 double getMaxAdmissibleMeshSize();
80 double getMinAdmissibleMeshSize();
82 void startGridConstructionStep();
83 void startGridInitialisationStep();
94 double globalMinTimeStamp,
95 double globalMaxTimeStamp,
96 double globalMinTimeStepSize,
97 double globalMaxTimeStepSize
100 void startPlottingStep(
101 double globalMinTimeStamp,
102 double globalMaxTimeStamp,
103 double globalMinTimeStepSize,
104 double globalMaxTimeStepSize
107 void finishGridConstructionStep();
108 void finishGridInitialisationStep();
132 void finishTimeStep();
133 void finishPlottingStep();
135 void startSimulation();
136 void finishSimulation();
155 bool isFirstGridSweepOfTimeStep();
168 bool isLastGridSweepOfTimeStep();
170 void suspendSolversForOneGridSweep();
172 void initLogFilters();
174 void initSharedMemoryAndGPUEnvironment();
184 std::string getSolverStateDescriptions();
186{%
for item in NAMESPACE -%}