From 3c433ad6ea590ca1badc03bb150e685f4158eaef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Scylla=29?= Date: Mon, 9 Dec 2013 11:07:44 +0100 Subject: [PATCH] Copy the generated time series in Base workspace (extended_path). --- ComputingTasks.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index 8d213250..2a9d3b2c 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -2463,8 +2463,8 @@ ExtendedPathStatement::writeOutput(ostream &output, const string &basename) cons if (it->first != string("periods")) output << "options_." << it->first << " = " << it->second << ";" << endl; - output << "oo_.endo_simul = [ oo_.steady_state, extended_path([], " << options_list.num_options.find("periods")->second - << ") ];" << endl + output << "extended_path([], " << options_list.num_options.find("periods")->second + << ");" << endl << "oo_.exo_simul = oo_.ep.shocks;" << endl; }