#!/bin/sh
for d in 5 ; do
  for p in 128 ; do
    for i in 1 2 3 ; do
      rand $d $p >eing
      echo generated testfile
      for SM in V M S ; do
	echo timing chull $d $p $SM
	time -p chull n s $SM f eing 2>&1
      done
    done
  done
done
