You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
324 B

#!/bin/csh
foreach N ( 3 4 5 6 7 8 9 10 15 )
echo "Generating for N=$N"
prismpp .dining_cryptN.nm.pp $N >! dining_crypt$N.nm
unix2dos dining_crypt$N.nm
prismpp .correctnessN.pctl.pp $N >! correctness$N.pctl
unix2dos correctness$N.pctl
prismpp .anonymityN.pctl.pp $N >! anonymity$N.pctl
unix2dos anonymity$N.pctl
end