scipopt / JSCIPOpt

Java interface for the SCIP Optimization Suite
MIT License
62 stars 35 forks source link

adds Scip::createPartialSol. #44

Closed fuookami closed 9 months ago

fuookami commented 9 months ago

I'm developing a modeling DSL. You can see There in line 96. There will be some variables generated by the DSL and users don't know. So, the initial solution user could provide doesn't contains all the variable in the final model. I have tried in C interface. If i use "SCIP::createSol", the initial solution has no effect. I need to use "SCIP::createPartialSol".

kkofler commented 9 months ago

Looks good, merging.