* To not explicitly call simplifying minisat (which isn't an option if compiled with cms).
* To remove comments and blank lines (which are introduced by AIG's conversion).
git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@937
e59a4935-1847-0410-ae03-
e826735625c1
files=`ls -1 -S *.smt2`
for f in $files; do
- stp --simplifying-minisat --output-CNF $f
- cnf=`cat output_*.cnf | wc -l`
+ stp --output-CNF $f
+ cnf=`cat output_*.cnf | grep -v "^c" | grep -v "^$" | wc -l`
if [ $cnf -gt 3 ] ; then
echo --fail
exit 10