Closed mforets closed 4 years ago
The following code:
casos = ["W1", "W2", "W3"]
verified = [1, 1, 1]
runtimes = [1.0 , 2.0, 3.0]
open("test.csv", "w") do io
print(io, "JuliaReach\n")
for (i, c) in enumerate(casos)
print(io, "$c; $(verified[i]); $(runtimes[i])\n")
end
print(io, "End of JuliaReach")
end
generates
JuliaReach
W1; 1; 1.0
W2; 1; 2.0
W3; 1; 3.0
End of JuliaReach
Comma to separate values and point as a decimal seperator
Regarding tool name, benchmark ID and instance:
Tentative decision:
The final format is:
PRD20: Production-Destruction
CVDP20: Couple Van der Pol
LALO20: Laub-Loomis
QUAD20: Quadrotor
LOVO20: Lotka-Volterra
SPRE20: Space Rendezvous
Tool, PRDE20, I, 1, runtime, final volume
Tool, PRDE20, P, 1, runtime, final volume
Tool, PRDE20, IP, 1, runtime, final volume
Tool, CVDP20, mu1, 1, runtime
Tool, CVDP20, mu2, 1, runtime
Tool, LALO20, W001, 1, runtime, final width
Tool, LALO20, W005, 1, runtime, final width
Tool, LALO20, W01, 1, runtime, final width
Tool, QUAD20, delta01, 1, runtime
Tool, QUAD20, delta04, 1, runtime
Tool, QUAD20, delta08, 1, runtime
Tool, LOVO20, , 1, runtime, volume, cntmax
Tool, SPRE20, , 1, runtime
I can take care of this task, hopefully this afternoon.