-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate names #536
Comments
We could say that it is "invalid" for any two variables or two constraints to have the same nonempty name and leave it up to the implementation on how to detect it and when to throw an error. Implementations could choose to throw an error on the We can't write generic tests for this behavior; models would have to write their own tests to make sure they're consistent with the rules. It's not ideal, but we're constrained by the performance considerations. |
Why can't we write the test @test_throws ErrorException begin
MOI.set(model, MOI.VariableName(), x, "a")
MOI.set(model, MOI.VariableName(), y, "a")
MOI.get(model, MOI.VariableIndex(), "a")
end solvers can throw an error in either the second or third line. |
@test_throws ErrorException begin
MOI.set(model, MOI.VariableName(), x, "a")
MOI.set(model, MOI.VariableName(), y, "a")
MOI.get(model, MOI.VariableIndex(), "a")
end We can try that. |
Note for future reference, we have changed our mind and setting duplicate names is now valid. Only |
We want to stop requiring models to error when a duplicate name is set, see #535.
What should be the requirement now ?
Maybe we can require it to error when the user does
MOI.get(model, MOI.VariableIndex, name)
where two or more variables have the namename
and if there is only one variable having the namename
but some other names have duplicates then it might error or not, we leave the choice in the implementation (in model, it errors when building the dict: #535)What do you think ?
We should also decide whether a model is allowed to error on
MOI.set
even if it is not requiredThe text was updated successfully, but these errors were encountered: