Updates for the new BMC engine.

This commit is contained in:
Alan Mishchenko 2013-09-05 16:05:59 -07:00
parent 8de1080272
commit 61126bfba4
1 changed files with 6 additions and 6 deletions

View File

@ -89,20 +89,20 @@ int Gia_ManBmcPerform( Gia_Man_t * pGia, Bmc_AndPar_t * pPars )
{ {
if ( pPars->fVerbose ) if ( pPars->fVerbose )
{ {
printf( "Frame %4d : AIG =%9d. Trivally UNSAT. Memory = %5.1f Mb ", printf( "Frame %4d : PI =%9d. AIG =%9d. Trivally UNSAT. Mem =%6.1f Mb ",
f, Gia_ManAndNum(pFrames), Gia_ManMemory(pFrames) ); f, Gia_ManPiNum(pFrames), Gia_ManAndNum(pFrames), Gia_ManMemory(pFrames) );
Abc_PrintTime( 1, "Time", Abc_Clock() - clk ); Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
} }
continue; continue;
} }
if ( pPars->fVerbose ) if ( pPars->fVerbose )
{ {
printf( "Frame %4d : AIG =%9d. And =%9d. Memory = %5.1f Mb ", printf( "Frame %4d : PI =%9d. AIG =%9d. And =%9d. Mem =%6.1f Mb ",
f, Gia_ManAndNum(pFrames), Gia_ManCountUnmarked(pFrames, iStart), Gia_ManMemory(pFrames) ); f, Gia_ManPiNum(pFrames), Gia_ManAndNum(pFrames), Gia_ManCountUnmarked(pFrames, iStart), Gia_ManMemory(pFrames) );
Abc_PrintTime( 1, "Time", Abc_Clock() - clk ); Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
} }
if ( ++Counter == 10 ) // if ( ++Counter == 10 )
break; // break;
} }
Unr_ManFree( p ); Unr_ManFree( p );
return status; return status;