From 28c099bfe002190920babe6422ee5f8fe49f8591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 28 Oct 2011 07:49:10 +0200 Subject: [PATCH] Fixed bug introduced in ce9fe30a7aa45eed5c04bd99a7d20710e94264c2 The auxiliary variable type for Lagrange multipliers had been incorrectly modified --- preprocessor/SymbolTable.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/preprocessor/SymbolTable.hh b/preprocessor/SymbolTable.hh index 75b50b0ec..762397b9c 100644 --- a/preprocessor/SymbolTable.hh +++ b/preprocessor/SymbolTable.hh @@ -38,7 +38,8 @@ enum aux_var_t avExoLead = 2, //!< Substitute for exo leads >= 2 avExoLag = 3, //!< Substitute for exo lags >= 2 avExpectation = 4, //!< Substitute for Expectation Operator - avMultiplier = 5 //!< Multipliers for FOC of Ramsey Probelem + // Type 5 now unused + avMultiplier = 6 //!< Multipliers for FOC of Ramsey Problem }; //! Information on some auxiliary variables