k_order_perturbation: cosmetic changes for the sake of clarity

git-svn-id: https://www.dynare.org/svn/dynare/trunk@3180 ac1d8469-bf42-47a9-8791-bf33cf982152
time-shift
sebastien 2009-11-30 20:31:11 +00:00
parent 48dad3e37a
commit ad71ee53c2
1 changed files with 2 additions and 6 deletions

View File

@ -115,21 +115,17 @@ KordpDynare::solveDeterministicSteady()
pa << "Non-linear solver for deterministic steady state By-passed " << endrec;
}
// evaluate system at given y_t=y_{t+1}=y_{t-1}, and given shocks x_t
void
KordpDynare::evaluateSystem(Vector &out, const Vector &yy, const Vector &xx) throw (DynareException)
{
// dynamicDLL.eval(yy, xx, params, out, NULL, NULL, NULL);
// Nothing to do, this method is only implemented to complete the interface of DynamicModel
}
// evaluate system at given y^*_{t-1}, y_t, y^{**}_{t+1} and at
// exogenous x_t, all three vectors yym, yy, and yyp have the
// respective lengths of y^*_{t-1}, y_t, y^{**}_{t+1}
void
KordpDynare::evaluateSystem(Vector &out, const Vector &yym, const Vector &yy,
const Vector &yyp, const Vector &xx) throw (DynareException)
{
// dynamicDLL.eval(yy, xx, params, out, NULL, NULL, NULL);
// Nothing to do, this method is only implemented to complete the interface of DynamicModel
}
/************************************************