Fix bug introduced in 3516894a71 related to new estimation syntax

fix-tolerance-parameters
Sébastien Villemot 2022-05-18 19:27:00 +02:00
parent 3516894a71
commit 2483639f4d
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 4 additions and 0 deletions

View File

@ -4116,6 +4116,7 @@ JointPriorStatement::writeOutputHelper(ostream &output, const string &field, con
else if (auto it = options_list.vector_of_vector_value_options.find(field);
it != options_list.vector_of_vector_value_options.end())
{
output << "{";
for (auto it2 = it->second.begin(); it2 != it->second.end(); ++it2)
{
if (it2 != it->second.begin())
@ -4129,7 +4130,10 @@ JointPriorStatement::writeOutputHelper(ostream &output, const string &field, con
}
output << "]";
}
output << "}";
}
else
output << "{}";
output << "};" << endl;
}