OGS
Types.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6namespace NumLib
7{
10
12enum class NonlinearSolverTag : bool
13{
16};
17
19enum class ODESystemTag : char
20{
28 NeumannBC // Sure, that's misuse of this enum, so sue me!
29};
30
32
33} // namespace NumLib
ODESystemTag
Tag used to specify the type of ODE.
Definition Types.h:20
NonlinearSolverTag
Tag used to specify which nonlinear solver will be used.
Definition Types.h:13
@ FirstOrderImplicitQuasilinear
Definition Types.h:27