set size 0.6,0.4 set terminal postscript eps set output "aimd.ps" ##set title "Smoothness vs. Responsiveness" set ylabel "Smoothness (Decrease)" set xlabel "Responsiveness (RTTs to Halve Sending Rate)" set key 9,0.87 plot [0:11] [0.4:1.05] (0.5**(1/x)) title "AIMD" with lines, \ "aimd.optimal" title "optimal smoothness" with lines, \ "aimd.1.data" title "TFRC" with points 1 5, \ "aimd.1.2" title "TCP" with points 1 1, \ "aimd.3.4" title "TCP(a, 1/4)" with points 1 2, \ "aimd.7.8" title "TCP(a, 1/8)" with points 1 3, \ "aimd.15.16" title "TCP(a, 1/16)" with points 1 4