include("/OVRP/src/run.jl")
args = ["/OVRP/data/toy.vrp", "-r"]
src_folder = "/OVRP/src"
app = parse_commandline(args, src_folder);
data = readOVRPData(app);
(model, x) = build_model(data, app);
print(model.formulation)
print(model.graphs)
A = arcs(data)
print(A)
c′(data, (i,j)) = (j == 0) ? 0 : (c(data, (i < j) ? (i,j) : (j,i)))
c′(data, (0,1))
c′(data, (1,0))
c′(data, (1,2))
c′(data, (2,1))
δ(data, 1)
δ⁻(data, 1)
include("/OVRP/src/model.jl") 
(model, x) = build_model(data, app);
print(model.formulation)
print(model.graphs)   
include("/OVRP/src/model.jl") 
(model, x) = build_model(data, app);
print(model.graphs)
args = ["/OVRP/data/E/E-n76-k14.vrp", "-m", "14", "-M", "14", "-t", "/OVRP/n76k14.tex"]
main(args)
