Skip to content

Commit

Permalink
Use group "default" instead of "legacy_study_group"
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Jul 28, 2023
1 parent 3c3b172 commit 79b6e50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ std::vector<std::shared_ptr<BindingConstraint>> BindingConstraintLoader::load(En
<< "]: Missing mandatory binding constraint group";
return {};
}
else
else // In studies versions < 870, binding constraints have no group. From version 870, antares requires constraints to have a group.
{
bc->group_ = "legacy_study_group";
bc->group_ = "default";
}
}

Expand Down

0 comments on commit 79b6e50

Please sign in to comment.