Fix Project.toml; generate CPLEX cuts more aggresively

This commit is contained in:
2023-01-23 13:43:23 -06:00
parent 1eee63702d
commit 323fd8de63
3 changed files with 18 additions and 26 deletions

View File

@@ -14,7 +14,9 @@ function test_cuts_blackbox_cplex()
# Read HDF5 file
h5open(h5_filename, "r+") do h5
@test size(h5["cuts_cpx_lhs"]) == (12, 104)
@test size(h5["cuts_cpx_rhs"]) == (12,)
rhs = h5["cuts_cpx_rhs"]
lhs = h5["cuts_cpx_lhs"]
ncuts = length(rhs)
@test size(lhs) == (ncuts, 104)
end
end