We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SCIP provides concurrent solving https://www.scipopt.org/doc-5.0.1/html/CONCSCIP.php. How would i go about triggering it?
The text was updated successfully, but these errors were encountered:
First thing would be to compile SCIP with the suitable options.
Second would be to modify slightly the optimize! function to call SCIPsolveConcurrent instead of SCIPsolve here:
function MOI.optimize!(o::Optimizer) set_start_values(o) if o.objective_sense == MOI.FEASIBILITY_SENSE MOI.set(o, MOI.ObjectiveFunction{SAF}(), SAF([], 0.0)) end @SCIP_CALL SCIPsolve(o) return nothing end
Sorry, something went wrong.
PS: up to date documentation page is here: https://www.scipopt.org/doc-8.0.1/html/CONCSCIP.php
I'll close this one for #242 which is similar.
No branches or pull requests
SCIP provides concurrent solving https://www.scipopt.org/doc-5.0.1/html/CONCSCIP.php. How would i go about triggering it?
The text was updated successfully, but these errors were encountered: