From 086d65d98c60fd222e18778ba2570cdd00dd96c4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Fri, 3 Nov 2023 17:55:55 +0100
Subject: [PATCH] Remove unused enum values

---
 src/CommonEnums.hh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/CommonEnums.hh b/src/CommonEnums.hh
index 4aef8f8e..c4ad7a6c 100644
--- a/src/CommonEnums.hh
+++ b/src/CommonEnums.hh
@@ -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
-- 
GitLab