Remove useless "markowitz" data member in DynamicModel and StaticDllModel

git-svn-id: https://www.dynare.org/svn/dynare/trunk@2886 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2009-09-03 09:57:17 +00:00
parent 08c338aa15
commit 743041ecc4
4 changed files with 0 additions and 6 deletions

View File

@ -43,7 +43,6 @@ DynamicModel::DynamicModel(SymbolTable &symbol_table_arg,
max_exo_det_lag(0), max_exo_det_lead(0),
dynJacobianColsNbr(0),
cutoff(1e-15),
markowitz(0.7),
mfs(0),
block_triangular(symbol_table_arg, num_constants_arg)
{

View File

@ -143,8 +143,6 @@ public:
virtual NodeID AddVariable(const string &name, int lag = 0);
//! Absolute value under which a number is considered to be zero
double cutoff;
//! The weight of the Markowitz criteria to determine the pivot in the linear solver (simul_NG1 and simul_NG from bytecode.cc)
double markowitz;
//! Compute the minimum feedback set in the dynamic model:
/*! 0 : all endogenous variables are considered as feedback variables
1 : the variables belonging to non normalized equation are considered as feedback variables

View File

@ -43,7 +43,6 @@ StaticDllModel::StaticDllModel(SymbolTable &symbol_table_arg,
max_exo_det_lag(0), max_exo_det_lead(0),
dynJacobianColsNbr(0),
cutoff(1e-15),
markowitz(0.7),
mfs(0),
block_triangular(symbol_table_arg, num_constants_arg)
{

View File

@ -135,8 +135,6 @@ public:
virtual NodeID AddVariable(const string &name, int lag = 0);
//! Absolute value under which a number is considered to be zero
double cutoff;
//! The weight of the Markowitz criteria to determine the pivot in the linear solver (simul_NG1 and simul_NG from simulate.cc)
double markowitz;
//! Compute the minimum feedback set in the static model:
/*! 0 : all endogenous variables are considered as feedback variables
1 : the variables belonging to a non linear equation are considered as feedback variables