-
Notifications
You must be signed in to change notification settings - Fork 42
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
Retrieve disaggregated solution #547
Conversation
It's a good start. The disaggregated solution may have columns with fractional values if we proved that there exists a combination that leads to feasible columns with integer values. Since we don't have such a mechanism, this solution may be infeasible. In the meantime, we can check the integrality of columns from sps with upper multiplicity greater than 1 in the feasibility checker. Let's keep this issue for later. |
By the way, I wouldn't store the |
test/sol_disaggregation_tests.jl
Outdated
@@ -0,0 +1,52 @@ | |||
function sol_disaggregation_tests() | |||
I = 1:20 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that you should test the feature by creating a new algorithm that returns a pre-defined solution. Then, you test if you can retrieve the same solution with the new interface.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(I misclicked)
fix #540
getsolutions
retrieves the disaggregated solution fromdisagg_result
inOptimizer