Commit 61126bfb by Alan Mishchenko

Updates for the new BMC engine.

parent 8de10802
...@@ -89,20 +89,20 @@ int Gia_ManBmcPerform( Gia_Man_t * pGia, Bmc_AndPar_t * pPars ) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment