diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-09-18 17:28:00 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-09-18 17:28:00 -0700 |
commit | 81b040e61c80e7a2d977b5fcf6266ec3460e395c (patch) | |
tree | 56853c43548c01edcdc832efdf9331421433c527 /src/misc | |
parent | f14f5c92032e0a50768723af857ed9de9c792161 (diff) | |
download | abc-81b040e61c80e7a2d977b5fcf6266ec3460e395c.tar.gz abc-81b040e61c80e7a2d977b5fcf6266ec3460e395c.tar.bz2 abc-81b040e61c80e7a2d977b5fcf6266ec3460e395c.zip |
Fixed minor issues having to do with the number of BDD vars used.
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/extra/extraBddMisc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/misc/extra/extraBddMisc.c b/src/misc/extra/extraBddMisc.c index 7d63980a..0bc4a8c5 100644 --- a/src/misc/extra/extraBddMisc.c +++ b/src/misc/extra/extraBddMisc.c @@ -1707,9 +1707,6 @@ cuddBddPermuteRecur( DdManager * manager /* DD manager */ , /* If problem already solved, look up answer and return. */ if ( N->ref != 1 && ( res = cuddHashTableLookup1( table, N ) ) != NULL ) { -#ifdef DD_DEBUG - bddPermuteRecurHits++; -#endif return ( Cudd_NotCond( res, N != node ) ); } |