Open Joao-Dionisio opened 2 weeks ago
Actually, SCIPcopy() does not produce a SCIP clone but is only guaranteed to hold an equivalent model if valid, since some plugins just do not implement the copy callback (I believe some of them by accident since the callback is non-fundamental), so the cause lies in SCIP.
In your opinion as the Issue master, should I create an issue on the gitlab, Dominik? :)
This would be nice. Then we can try to add the copy callbacks and see what happens (as the issue indicates, this might affect performance of subscips). For example the benders parameters get lost as the documentation of SCIPcopyPlugins()
notes that SCIPcopyBenders()
must be called separately if desired.
Reported in #918.
Also need to find out why it loses some of the original model's parameters.