OGS
Types.h
Go to the documentation of this file.
1
11#pragma once
12
13namespace NumLib
14{
17
19enum class NonlinearSolverTag : bool
20{
21 Picard ,
22 Newton
23};
24
26enum class ODESystemTag : char
27{
35 NeumannBC // Sure, that's misuse of this enum, so sue me!
36};
37
39
40} // namespace NumLib
ODESystemTag
Tag used to specify the type of ODE.
Definition Types.h:27
NonlinearSolverTag
Tag used to specify which nonlinear solver will be used.
Definition Types.h:20