v4 parser ModelParameters: removed unused variables

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1028 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2006-11-04 22:22:40 +00:00
parent 3e049c1123
commit bc48569ea3
3 changed files with 1 additions and 31 deletions

View File

@ -556,7 +556,7 @@ FILTER_SOURCE_FILES = NO
# Note: To get rid of all source code in the generated output, make sure also
# VERBATIM_HEADERS is set to NO.
SOURCE_BROWSER = NO
SOURCE_BROWSER = YES
# Setting the INLINE_SOURCES tag to YES will include the body
# of functions and classes directly in the documentation.

View File

@ -8,7 +8,6 @@
#include "ModelParameters.h"
#include "limits.h"
//------------------------------------------------------------------------------
int ModelParameters::model_nbr = 0;
int ModelParameters::eq_nbr = 0;
int ModelParameters::exo_nbr = 0;
int ModelParameters::var_exo_nbr = 0;
@ -18,10 +17,6 @@ int ModelParameters::endo_nbr = 0;
int ModelParameters::var_endo_nbr = 0;
int ModelParameters::parameter_nbr = 0;
int ModelParameters::local_parameter_nbr = 0;
int ModelParameters::lagged_nbr = 0;
int ModelParameters::static_nbr = 0;
int ModelParameters::forward_nbr = 0;
int ModelParameters::both_nbr = 0;
int ModelParameters::recur_nbr = 0;
int ModelParameters::max_lag = 0;
int ModelParameters::max_lead = 0;

View File

@ -18,8 +18,6 @@ class ModelParameters
ModelParameters();
/*! Destructor */
~ModelParameters();
/*! Number of sub-models */
static int model_nbr;
/*! Number of equations*/
static int eq_nbr;
/*! Number of declared Exogenous variables */
@ -37,16 +35,6 @@ class ModelParameters
static int parameter_nbr;
/*! Number of local parameters */
static int local_parameter_nbr;
/*! Number of lagged variables */
static int lagged_nbr;
/*! Number of static variables */
static int static_nbr;
/*! Number of forward-looking variables */
static int forward_nbr;
/*! Number of variables that are both lagged and forward-looking */
static int both_nbr;
/*! Number of equations */
static int equation_nbr;
/*! Number of recursive variables */
static int recur_nbr;
@ -60,19 +48,6 @@ class ModelParameters
static int max_exo_det_lead;
static int max_recur_lag;
static int max_recur_lead;
/*! Minimum lag for endogenous variables */
//static int endo_min_lag;
/*! Maximum lag for endogenous variables*/
//static int endo_max_lag;
/*! Miniimum lag for exogenous variables*/
//static int exo_min_lag;
/*! Maximum lag for exogenous variables*/
//static int exo_max_lag;
/*! Minimum lag for recusive variables*/
//static int recur_min_lag;
/*! Maximum lag for recursive variables*/
//static int recur_max_lag;
};
//------------------------------------------------------------------------------
#endif