You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The C++ class DefaultSolver currently doesn't behave well when copied or moved.
Based on a quick scan of the C bindings, I don't think it's foreseen to be possible to copy a solver object. Hence, the copy constructor and operator should be deleted.
Moving a solver object is quite straightforward however, but the definition thereof is missing.
Tested implementation (nothing but standard boilerplate code):
The C++ class
DefaultSolver
currently doesn't behave well when copied or moved.Based on a quick scan of the C bindings, I don't think it's foreseen to be possible to copy a solver object. Hence, the copy constructor and operator should be deleted.
Moving a solver object is quite straightforward however, but the definition thereof is missing.
Tested implementation (nothing but standard boilerplate code):
The text was updated successfully, but these errors were encountered: