Update input schema, example input file and parser

This commit is contained in:
2020-06-25 15:11:31 -05:00
parent 8b3f3206eb
commit 4a9266a1bf
5 changed files with 185 additions and 166 deletions

View File

@@ -36,9 +36,9 @@ using RELOG, Cbc, JuMP, Printf, JSON, MathOptInterface.FileFormats
@test lower_bound(v) == 0.0
@test upper_bound(v) == 1.0
dest = FileFormats.Model(format = FileFormats.FORMAT_LP)
MOI.copy_to(dest, model.mip)
MOI.write_to_file(dest, "model.lp")
#dest = FileFormats.Model(format = FileFormats.FORMAT_LP)
#MOI.copy_to(dest, model.mip)
#MOI.write_to_file(dest, "model.lp")
end
@testset "solve" begin