Commented out the default call to UNSAT core verification.

This commit is contained in:
Alan Mishchenko 2011-11-25 18:07:41 -08:00
parent 9726d5a85e
commit 0f594b78fa
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}