scipopt / russcip

Rust interface for SCIP
https://crates.io/crates/russcip
Apache License 2.0
37 stars 11 forks source link

Impossible to call methods from a reference to `Model` #65

Closed mmghannam closed 1 year ago

mmghannam commented 1 year ago

A reference to the Model class is needed for plugins to be able to query the model. Can be fixed by changing all methods to take a -mutable- reference to self instead of requiring ownership.

mmghannam commented 1 year ago

Solved in #66