From c3ed13bec747edb9c617d830d778642572b9e337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Hermes=29?= Date: Fri, 11 Mar 2016 13:54:15 +0100 Subject: [PATCH] Removed globals from extended_path routine. --- ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComputingTasks.cc b/ComputingTasks.cc index 16cfde02..24c3f12d 100644 --- a/ComputingTasks.cc +++ b/ComputingTasks.cc @@ -3200,7 +3200,7 @@ ExtendedPathStatement::writeOutput(ostream &output, const string &basename, bool output << "options_." << it->first << " = " << it->second << ";" << endl; output << "extended_path([], " << options_list.num_options.find("periods")->second - << ");" << endl; + << ", options_, M_, oo_);" << endl; } ModelDiagnosticsStatement::ModelDiagnosticsStatement()