mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 09:28:51 -06:00
Fix all tests
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
# Released under the modified BSD license. See COPYING.md for more details.
|
||||
|
||||
import logging
|
||||
import dill
|
||||
import pickle
|
||||
import tempfile
|
||||
import os
|
||||
@@ -44,7 +45,7 @@ def test_learning_solver():
|
||||
|
||||
# Assert solver is picklable
|
||||
with tempfile.TemporaryFile() as file:
|
||||
pickle.dump(solver, file)
|
||||
dill.dump(solver, file)
|
||||
|
||||
|
||||
def test_solve_without_lp():
|
||||
|
||||
Reference in New Issue
Block a user