#!/bin/bash

for poly in `cat polys`
do
./gf 10 $poly < data.$1 > test.$poly
diff -b -I parity syn.$1 test.$poly >/dev/null && echo $poly
done
