From ef5893fdbcd2a8678a9a05e3ea85f12832f6bb83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Fri, 28 Jun 2013 11:14:24 +0200 Subject: [PATCH] Make calib_smoother command call evaluate_smoother matlab routine. --- ComputingTasks.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index 101d139b..74e98e70 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -2412,10 +2412,9 @@ CalibSmootherStatement::writeOutput(ostream &output, const string &basename) con { options_list.writeOutput(output); symbol_list.writeOutput("var_list_", output); - output << "options_.mode_compute = 0;" << endl - << "options_.smoother = 1;" << endl - << "options_.order = 1;" << endl - << "dynare_estimation(var_list_);" << endl; + output << "options_.smoother = 1;" << endl; + output << "options_.order = 1;" << endl; + output << "evaluate_smoother('calibration',var_list_);" << endl; } ExtendedPathStatement::ExtendedPathStatement(const OptionsList &options_list_arg)