BenchmarkRunner: Ensure outputs are discarded

This commit is contained in:
2021-05-26 09:44:49 -05:00
parent 9689306876
commit 1bb2b48b7d
9 changed files with 54 additions and 22 deletions

View File

@@ -18,7 +18,7 @@ using Gurobi
solver = LearningSolver(Gurobi.Optimizer)
solve!(solver, file_instance)
loaded = load_jump_instance(filename)
loaded = load_instance(filename)
@test length(loaded.py.samples) == 1
end
end

View File

@@ -20,7 +20,7 @@ using MIPLearn
@test isfile(filename)
# Read model from file
loaded = load_jump_instance(filename)
loaded = load_instance(filename)
x = variable_by_name(loaded.model, "x")
@test loaded.model.ext[:miplearn][:variable_features][x] == [1.0]
@test loaded.model.ext[:miplearn][:variable_categories][x] == "cat1"