Remove options_ as third input to set_state_space

master
Johannes Pfeifer 2023-10-09 07:05:33 +02:00 committed by Sébastien Villemot
parent 084372a314
commit 16b063f666
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -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};