From 770bc99e79baa07a9d2cc7a25dc30ee86ed34d91 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sun, 15 Mar 2009 08:01:00 -0700 Subject: Version abc90315 --- src/opt/mfs/mfsSat.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/opt/mfs') diff --git a/src/opt/mfs/mfsSat.c b/src/opt/mfs/mfsSat.c index a35d67e4..eab80c53 100644 --- a/src/opt/mfs/mfsSat.c +++ b/src/opt/mfs/mfsSat.c @@ -43,11 +43,16 @@ int Abc_NtkMfsSolveSat_iter( Mfs_Man_t * p ) { int Lits[MFS_FANIN_MAX]; int RetValue, nBTLimit, iVar, b, Mint; +// int nConfs = p->pSat->stats.conflicts; if ( p->nTotConfLim && p->nTotConfLim <= p->pSat->stats.conflicts ) return -1; nBTLimit = p->nTotConfLim? p->nTotConfLim - p->pSat->stats.conflicts : 0; RetValue = sat_solver_solve( p->pSat, NULL, NULL, (ABC_INT64_T)nBTLimit, (ABC_INT64_T)0, (ABC_INT64_T)0, (ABC_INT64_T)0 ); assert( RetValue == l_Undef || RetValue == l_True || RetValue == l_False ); +//printf( "%c", RetValue==l_Undef ? '?' : (RetValue==l_False ? '-' : '+') ); +//printf( "%d ", p->pSat->stats.conflicts-nConfs ); +//if ( RetValue==l_False ) +//printf( "\n" ); if ( RetValue == l_Undef ) return -1; if ( RetValue == l_False ) -- cgit v1.2.3