They were not updated since we moved binaries around in Spot 2.0. Let them use ltl2tgba directly. * bench/ltlclasses/plot.gnu, bench/ltlclasses/run, bench/ltlcounter/plot.gnu, bench/ltlcounter/run: Adjust.
21 lines
604 B
Gnuplot
21 lines
604 B
Gnuplot
set terminal postscript eps enhanced color
|
|
set ytics nomirror
|
|
set y2tics auto
|
|
set ylabel "states"
|
|
set y2label "seconds"
|
|
set key left top
|
|
|
|
set output 'results.fm.eps'
|
|
|
|
plot 'results.fm' using 1:4 '%lf,%lf,%lf,%lf' \
|
|
with filledcurve x1 title "Translation Time" axes x1y2, \
|
|
'results.fm' using 1:2 '%lf,%lf,%lf,%lf' \
|
|
with lines title "States"
|
|
|
|
|
|
# set output 'results.taa.eps'
|
|
#
|
|
# plot 'results.taa' using 1:4 '%lf,%lf,%lf,%lf' \
|
|
# with filledcurve x1 title "Translation Time" axes x1y2, \
|
|
# 'results.taa' using 1:2 '%lf,%lf,%lf,%lf' \
|
|
# with lines title "States"
|