Peano
Loading...
Searching...
No Matches
AbstractLimiterActionSet.py
Go to the documentation of this file.
1# This file is part of the ExaHyPE2 project. For conditions of distribution and
2# use, please see the copyright notice at www.peano-framework.org
3from peano4.solversteps.ActionSet import ActionSet
4
5
7 def __init__(self, solver):
8 self._solver = solver
9
11 return __name__.replace(".py", "").replace(".", "_")
12
14 return False
15
16 def get_includes(self):
17 return (
18 """
19#include <functional>
20"""
21 + self._solver._get_default_includes()
22 + self._solver.get_user_action_set_includes()
23 )
Action set (reactions to events)
Definition ActionSet.py:6