The availablity for from_pyscipopt() function #253
Unanswered
jp18813100494
asked this question in
Questions
Replies: 1 comment
-
Hi @jp18813100494, Yes,
Could you provide more information of the nature of your error, such as the error message.
import pyscipopt
import ecole
model_pysciopt = pyscipopt.Model()
# Keep on using the pyscipopt functions
...
# Data between the two functions are shared (same memory)
model_ecole = ecole.scip.Model.from_pyscipopt(model_pysciopt)
# Keep on using the ecole functions
... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently, I create a new model for VRPTW problem based on Pyscipopt. Then I want to transform the Pyscipopt model to Ecole model, thus obtaining the structured observation data including column, node, edge features. However, one mistake happens when I utilized
ecole.scip.Model.from_pyscipopt()
. I wanna ask is thefrom_pyscipopt()
function available now? Or I made some mistakes when I operate? Can you provide an example forfrom_pyscipopt
?Beta Was this translation helpful? Give feedback.
All reactions