change ordering of aux vars in enum

issue#70
Houtan Bastani 2019-02-22 17:15:11 +01:00
parent 6a34603f91
commit 20690e1664
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ enum class AuxVarType
varModel = 7, //!< Variable for var_model with order > abs(min_lag()) present in model
diff = 8, //!< Variable for Diff operator
diffLag = 9, //!< Variable for timing between Diff operators
diffLead = 10, //!< Variable for timing between Diff operators
unaryOp = 11 //!< Variable for allowing the undiff operator to work when diff was taken of unary op, eg diff(log(x))
unaryOp = 10, //!< Variable for allowing the undiff operator to work when diff was taken of unary op, eg diff(log(x))
diffLead = 11 //!< Variable for timing between Diff operators
};
//! Information on some auxiliary variables