Updates for the new BMC engine.

This commit is contained in:
Alan Mishchenko 2013-09-05 15:54:52 -07:00
parent e9d0466494
commit 8de1080272
3 changed files with 6 additions and 4 deletions

View File

@ -32966,7 +32966,7 @@ usage:
***********************************************************************/
int Abc_CommandAbc9Test( Abc_Frame_t * pAbc, int argc, char ** argv )
{
Gia_Man_t * pTemp = NULL;
// Gia_Man_t * pTemp = NULL;
int c, fVerbose = 0;
int nFrames = 10;
int fSwitch = 0;

View File

@ -89,14 +89,16 @@ int Gia_ManBmcPerform( Gia_Man_t * pGia, Bmc_AndPar_t * pPars )
{
if ( pPars->fVerbose )
{
printf( "Frame %4d : Trivally UNSAT. Memory = %5.1f Mb ", f, Gia_ManMemory(pFrames) );
printf( "Frame %4d : AIG =%9d. Trivally UNSAT. Memory = %5.1f Mb ",
f, Gia_ManAndNum(pFrames), Gia_ManMemory(pFrames) );
Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
}
continue;
}
if ( pPars->fVerbose )
{
printf( "Frame %4d : AIG =%9d. Memory = %5.1f Mb ", f, Gia_ManCountUnmarked(pFrames, iStart), Gia_ManMemory(pFrames) );
printf( "Frame %4d : AIG =%9d. And =%9d. Memory = %5.1f Mb ",
f, Gia_ManAndNum(pFrames), Gia_ManCountUnmarked(pFrames, iStart), Gia_ManMemory(pFrames) );
Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
}
if ( ++Counter == 10 )

View File

@ -166,7 +166,7 @@ void Bmc_LadStop( Bmc_Lad_t * p )
***********************************************************************/
void Bmc_PerformBmc( Gia_Man_t * pGia, Bmc_AndPar_t * pPars )
{
int nConfLimit = 0;
// int nConfLimit = 0;
Bmc_Lad_t * p;
Gia_Obj_t * pObj;
int i, status, Lit;