Start implementation of circular model

This commit is contained in:
2023-12-06 09:27:37 -06:00
parent 4947ad1a8a
commit 0da66b571a
9 changed files with 169 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
using RELOG
using Test
using HiGHS
using JuMP
function model_build_test()
instance = RELOG.parsefile(fixture("simple.json"))
model = RELOG.build_model(instance, optimizer=HiGHS.Optimizer, variable_names=true)
print(model)
end