#!/bin/csh

foreach l (0.0004 0.0008 0.0016 0.0032 0.0064 0.0128 0.0192 0.0256 0.0384 0.0512 0.06 0.07 0.08 0.09 0.1 0.12 0.13 0.15 0.16)
    echo $l
    python lab9_slidingwindow.py -w 32 -l $l -t 10000 | grep throughput
end
