summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-11-25 18:07:41 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2011-11-25 18:07:41 -0800
commit0f594b78fae6f45cee463fe47e6f2c0fb33abaf2 (patch)
tree155fa11088110b21ff681b2bcbc236b680ec3cb6 /src
parent9726d5a85e132e117cbc5caf7a3d8b6cd2f9e4fc (diff)
downloadabc-0f594b78fae6f45cee463fe47e6f2c0fb33abaf2.tar.gz
abc-0f594b78fae6f45cee463fe47e6f2c0fb33abaf2.tar.bz2
abc-0f594b78fae6f45cee463fe47e6f2c0fb33abaf2.zip
Commented out the default call to UNSAT core verification.
Diffstat (limited to 'src')
-rw-r--r--src/sat/bsat/satInterP.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sat/bsat/satInterP.c b/src/sat/bsat/satInterP.c
index 76f6982d..ff0b0e94 100644
--- a/src/sat/bsat/satInterP.c
+++ b/src/sat/bsat/satInterP.c
@@ -1037,7 +1037,7 @@ p->timeTotal += clock() - clkTotal;
if ( fVerbose )
printf( "Root clauses = %d. Learned clauses = %d. UNSAT core size = %d.\n",
p->pCnf->nRoots, p->pCnf->nClauses-p->pCnf->nRoots, Vec_IntSize(vCore) );
- Intp_ManUnsatCoreVerify( p->pCnf, vCore );
+// Intp_ManUnsatCoreVerify( p->pCnf, vCore );
return vCore;
}