k-order: removed unnecessary check

time-shift
Houtan Bastani 2010-12-17 18:32:29 +01:00 committed by Sébastien Villemot
parent 1a9d6eece5
commit d0853e1658
1 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,6 @@ void
DynamicModelDLL::eval(const Vector &y, const Vector &x, const Vector &modParams, const Vector &ySteady,
Vector &residual, TwoDMatrix *g1, TwoDMatrix *g2, TwoDMatrix *g3) throw (DynareException)
{
Dynamic(y.base(), x.base(), 1, modParams.base(), ySteady.base(), 0, residual.base(),
g1 == NULL ? NULL : g1->base(),
Dynamic(y.base(), x.base(), 1, modParams.base(), ySteady.base(), 0, residual.base(), g1->base(),
g2 == NULL ? NULL : g2->base(), g3 == NULL ? NULL : g3->base());
}