From 2466966e3fbdee2a6fa25fa9b8467bb69bfc82de 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 --- SymbolTable.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SymbolTable.hh b/SymbolTable.hh index 75b50b0e..762397b9 100644 --- a/SymbolTable.hh +++ b/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