Skip to content
Snippets Groups Projects
Verified Commit 086d65d9 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Remove unused enum values

parent 53987fc0
No related branches found
No related tags found
No related merge requests found
Pipeline #9507 passed
......@@ -119,7 +119,6 @@ enum class PriorDistributions
enum class EquationType
{
unknown, //!< Unknown equation type
evaluate, //!< Simple evaluation, normalized variable on left-hand side (written as such by the user)
evaluateRenormalized, //!< Simple evaluation, normalized variable on left-hand side (normalization computed by the preprocessor)
solve //!< No simple evaluation of the equation, it has to be solved
......@@ -127,8 +126,7 @@ enum class EquationType
enum class BlockSimulationType
{
unknown, //!< Unknown simulation type
evaluateForward, //!< Simple evaluation, normalized variable on left-hand side, forward
evaluateForward = 1, //!< Simple evaluation, normalized variable on left-hand side, forward
evaluateBackward, //!< Simple evaluation, normalized variable on left-hand side, backward
solveForwardSimple, //!< Block of one equation, newton solver needed, forward
solveBackwardSimple, //!< Block of one equation, newton solver needed, backward
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment