From 16b063f666df679173e3da7f30ec1bff55755ddb Mon Sep 17 00:00:00 2001 From: Johannes Pfeifer <jpfeifer@gmx.de> Date: Mon, 9 Oct 2023 07:05:33 +0200 Subject: [PATCH] Remove options_ as third input to set_state_space --- src/ComputingTasks.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ComputingTasks.cc b/src/ComputingTasks.cc index d77f040d..52b5f2b3 100644 --- a/src/ComputingTasks.cc +++ b/src/ComputingTasks.cc @@ -5334,7 +5334,7 @@ OccbinConstraintsStatement::writeOutput(ostream &output, const string &basename, output << "];" << endl << "options_.occbin = struct();" << endl << "options_.occbin = occbin.set_default_options(options_.occbin, M_);" << endl - << "oo_.dr=set_state_space(oo_.dr,M_,options_);" << endl; + << "oo_.dr=set_state_space(oo_.dr,M_);" << endl; filesystem::path filename {"+" + basename + "/occbin_difference.m"}; ofstream diff_output{filename, ios::out | ios::binary}; -- GitLab