#!/usr/bin/gnuplot

set title "Dual Bin Packing, uniform data, \n SPECIFICTITLE"
set terminal postscript # enhanced eps color
set output "results.ps"

set xlabel "XLABEL"
set ylabel "ratio"
set yrange [0.98:1.25]

plot "AutoGeneratedGnuplotData.gpdata" using 1:2 title " " with linespoints, \
     "AutoGeneratedGnuplotData2.gpdata" using 1:2 title " " with points
