2013-04-26 00:32:30 +02:00
|
|
|
/**CFile****************************************************************
|
|
|
|
|
|
|
|
|
|
FileName [sscCore.c]
|
|
|
|
|
|
|
|
|
|
SystemName [ABC: Logic synthesis and verification system.]
|
|
|
|
|
|
|
|
|
|
PackageName [SAT sweeping under constraints.]
|
|
|
|
|
|
|
|
|
|
Synopsis [The core procedures.]
|
|
|
|
|
|
|
|
|
|
Author [Alan Mishchenko]
|
|
|
|
|
|
|
|
|
|
Affiliation [UC Berkeley]
|
|
|
|
|
|
|
|
|
|
Date [Ver. 1.0. Started - June 29, 2008.]
|
|
|
|
|
|
|
|
|
|
Revision [$Id: sscCore.c,v 1.00 2008/07/29 00:00:00 alanmi Exp $]
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "sscInt.h"
|
|
|
|
|
|
|
|
|
|
ABC_NAMESPACE_IMPL_START
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// DECLARATIONS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// FUNCTION DEFINITIONS ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [This procedure sets default parameters.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Ssc_ManSetDefaultParams( Ssc_Pars_t * p )
|
|
|
|
|
{
|
|
|
|
|
memset( p, 0, sizeof(Ssc_Pars_t) );
|
2013-04-28 03:37:39 +02:00
|
|
|
p->nWords = 1; // the number of simulation words
|
2013-04-26 00:32:30 +02:00
|
|
|
p->nBTLimit = 1000; // conflict limit at a node
|
|
|
|
|
p->nSatVarMax = 5000; // the max number of SAT variables
|
|
|
|
|
p->nCallsRecycle = 100; // calls to perform before recycling SAT solver
|
|
|
|
|
p->fVerbose = 0; // verbose stats
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis []
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
void Ssc_ManStop( Ssc_Man_t * p )
|
|
|
|
|
{
|
2013-04-28 03:37:39 +02:00
|
|
|
Vec_IntFreeP( &p->vFront );
|
|
|
|
|
Vec_IntFreeP( &p->vFanins );
|
|
|
|
|
Vec_IntFreeP( &p->vPattern );
|
|
|
|
|
Vec_IntFreeP( &p->vDisPairs );
|
2013-04-26 00:32:30 +02:00
|
|
|
Vec_IntFreeP( &p->vPivot );
|
2013-04-28 03:37:39 +02:00
|
|
|
Vec_IntFreeP( &p->vId2Var );
|
|
|
|
|
Vec_IntFreeP( &p->vVar2Id );
|
|
|
|
|
if ( p->pSat ) sat_solver_delete( p->pSat );
|
|
|
|
|
Gia_ManStopP( &p->pFraig );
|
2013-04-26 00:32:30 +02:00
|
|
|
ABC_FREE( p );
|
|
|
|
|
}
|
|
|
|
|
Ssc_Man_t * Ssc_ManStart( Gia_Man_t * pAig, Gia_Man_t * pCare, Ssc_Pars_t * pPars )
|
|
|
|
|
{
|
|
|
|
|
Ssc_Man_t * p;
|
|
|
|
|
p = ABC_CALLOC( Ssc_Man_t, 1 );
|
|
|
|
|
p->pPars = pPars;
|
|
|
|
|
p->pAig = pAig;
|
|
|
|
|
p->pCare = pCare;
|
2013-04-29 04:17:59 +02:00
|
|
|
p->pFraig = Gia_ManDupDfs( p->pCare );
|
|
|
|
|
assert( p->pFraig->pHTable == NULL );
|
|
|
|
|
assert( !Gia_ManHasDangling(p->pFraig) );
|
2013-04-26 00:32:30 +02:00
|
|
|
Gia_ManInvertPos( p->pFraig );
|
|
|
|
|
Ssc_ManStartSolver( p );
|
|
|
|
|
if ( p->pSat == NULL )
|
|
|
|
|
{
|
2013-04-28 03:37:39 +02:00
|
|
|
printf( "Constraints are UNSAT after propagation (likely a bug!).\n" );
|
2013-04-26 00:32:30 +02:00
|
|
|
Ssc_ManStop( p );
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2013-04-28 03:37:39 +02:00
|
|
|
// p->vPivot = Ssc_GiaFindPivotSim( p->pFraig );
|
2013-04-26 00:32:30 +02:00
|
|
|
// Vec_IntFreeP( &p->vPivot );
|
2013-04-28 03:37:39 +02:00
|
|
|
p->vPivot = Ssc_ManFindPivotSat( p );
|
2013-04-26 00:32:30 +02:00
|
|
|
if ( p->vPivot == NULL )
|
|
|
|
|
{
|
|
|
|
|
printf( "Constraints are UNSAT or conflict limit is too low.\n" );
|
|
|
|
|
Ssc_ManStop( p );
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2013-04-28 03:37:39 +02:00
|
|
|
sat_solver_bookmark( p->pSat );
|
2013-04-28 07:38:01 +02:00
|
|
|
// Vec_IntPrint( p->vPivot );
|
2013-04-28 03:37:39 +02:00
|
|
|
Gia_ManSetPhasePattern( p->pAig, p->vPivot );
|
|
|
|
|
Gia_ManSetPhasePattern( p->pCare, p->vPivot );
|
|
|
|
|
if ( Gia_ManCheckCoPhase(p->pCare) )
|
|
|
|
|
{
|
|
|
|
|
printf( "Computed reference pattern violates %d constraints (this is a bug!).\n", Gia_ManCheckCoPhase(p->pCare) );
|
|
|
|
|
Ssc_ManStop( p );
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
// other things
|
|
|
|
|
p->vDisPairs = Vec_IntAlloc( 100 );
|
|
|
|
|
p->vPattern = Vec_IntAlloc( 100 );
|
|
|
|
|
p->vFanins = Vec_IntAlloc( 100 );
|
|
|
|
|
p->vFront = Vec_IntAlloc( 100 );
|
|
|
|
|
Ssc_GiaClassesInit( pAig );
|
2013-05-06 09:44:21 +02:00
|
|
|
// now it is ready for refinement using simulation
|
2013-04-26 00:32:30 +02:00
|
|
|
return p;
|
|
|
|
|
}
|
2013-04-28 07:38:01 +02:00
|
|
|
void Ssc_ManPrintStats( Ssc_Man_t * p )
|
|
|
|
|
{
|
|
|
|
|
Abc_Print( 1, "Parameters: SimWords = %d. SatConfs = %d. SatVarMax = %d. CallsRec = %d. Verbose = %d.\n",
|
|
|
|
|
p->pPars->nWords, p->pPars->nBTLimit, p->pPars->nSatVarMax, p->pPars->nCallsRecycle, p->pPars->fVerbose );
|
|
|
|
|
Abc_Print( 1, "SAT calls : Total = %d. Proof = %d. Cex = %d. Undec = %d.\n",
|
|
|
|
|
p->nSatCalls, p->nSatCallsUnsat, p->nSatCallsSat, p->nSatCallsUndec );
|
|
|
|
|
Abc_Print( 1, "SAT solver: Vars = %d. Clauses = %d. Recycles = %d. Sim rounds = %d.\n",
|
|
|
|
|
sat_solver_nvars(p->pSat), sat_solver_nclauses(p->pSat), p->nRecycles, p->nSimRounds );
|
|
|
|
|
|
|
|
|
|
p->timeOther = p->timeTotal - p->timeSimInit - p->timeSimSat - p->timeCnfGen - p->timeSatSat - p->timeSatUnsat - p->timeSatUndec;
|
|
|
|
|
ABC_PRTP( "Initialization ", p->timeSimInit, p->timeTotal );
|
|
|
|
|
ABC_PRTP( "SAT simulation ", p->timeSimSat, p->timeTotal );
|
|
|
|
|
ABC_PRTP( "CNF generation ", p->timeSimSat, p->timeTotal );
|
|
|
|
|
ABC_PRTP( "SAT solving ", p->timeSat-p->timeCnfGen, p->timeTotal );
|
|
|
|
|
ABC_PRTP( " unsat ", p->timeSatUnsat, p->timeTotal );
|
|
|
|
|
ABC_PRTP( " sat ", p->timeSatSat, p->timeTotal );
|
|
|
|
|
ABC_PRTP( " undecided ", p->timeSatUndec, p->timeTotal );
|
|
|
|
|
ABC_PRTP( "Other ", p->timeOther, p->timeTotal );
|
|
|
|
|
ABC_PRTP( "TOTAL ", p->timeTotal, p->timeTotal );
|
|
|
|
|
}
|
2013-04-26 00:32:30 +02:00
|
|
|
|
2013-05-06 09:44:21 +02:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
|
|
|
|
Synopsis [Refine one class by resimulating one pattern.]
|
|
|
|
|
|
|
|
|
|
Description []
|
|
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
int Ssc_GiaSimulatePatternFraig_rec( Ssc_Man_t * p, int iFraigObj )
|
|
|
|
|
{
|
|
|
|
|
Gia_Obj_t * pObj;
|
|
|
|
|
int Res0, Res1;
|
|
|
|
|
if ( Ssc_ObjSatVar(p, iFraigObj) )
|
|
|
|
|
return sat_solver_var_value( p->pSat, Ssc_ObjSatVar(p, iFraigObj) );
|
|
|
|
|
pObj = Gia_ManObj( p->pFraig, iFraigObj );
|
|
|
|
|
assert( Gia_ObjIsAnd(pObj) );
|
|
|
|
|
Res0 = Ssc_GiaSimulatePatternFraig_rec( p, Gia_ObjFaninId0(pObj, iFraigObj) );
|
|
|
|
|
Res1 = Ssc_GiaSimulatePatternFraig_rec( p, Gia_ObjFaninId1(pObj, iFraigObj) );
|
|
|
|
|
pObj->fMark0 = (Res0 ^ Gia_ObjFaninC0(pObj)) & (Res1 ^ Gia_ObjFaninC1(pObj));
|
|
|
|
|
return pObj->fMark0;
|
|
|
|
|
}
|
|
|
|
|
int Ssc_GiaSimulatePattern_rec( Ssc_Man_t * p, Gia_Obj_t * pObj )
|
|
|
|
|
{
|
|
|
|
|
int Res0, Res1;
|
|
|
|
|
if ( Gia_ObjIsTravIdCurrent(p->pAig, pObj) )
|
|
|
|
|
return pObj->fMark0;
|
|
|
|
|
Gia_ObjSetTravIdCurrent(p->pAig, pObj);
|
|
|
|
|
if ( ~pObj->Value ) // mapping into FRAIG exists - simulate FRAIG
|
|
|
|
|
{
|
|
|
|
|
Res0 = Ssc_GiaSimulatePatternFraig_rec( p, Abc_Lit2Var(pObj->Value) );
|
|
|
|
|
pObj->fMark0 = Res0 ^ Abc_LitIsCompl(pObj->Value);
|
|
|
|
|
}
|
|
|
|
|
else // mapping into FRAIG does not exist - simulate AIG
|
|
|
|
|
{
|
|
|
|
|
Res0 = Ssc_GiaSimulatePattern_rec( p, Gia_ObjFanin0(pObj) );
|
|
|
|
|
Res1 = Ssc_GiaSimulatePattern_rec( p, Gia_ObjFanin1(pObj) );
|
|
|
|
|
pObj->fMark0 = (Res0 ^ Gia_ObjFaninC0(pObj)) & (Res1 ^ Gia_ObjFaninC1(pObj));
|
|
|
|
|
}
|
|
|
|
|
return pObj->fMark0;
|
|
|
|
|
}
|
|
|
|
|
int Ssc_GiaResimulateOneClass( Ssc_Man_t * p, int iRepr, int iObj )
|
|
|
|
|
{
|
|
|
|
|
int Ent, RetValue;
|
|
|
|
|
assert( iRepr == Gia_ObjRepr(p->pAig, iObj) );
|
|
|
|
|
assert( Gia_ObjIsHead( p->pAig, iRepr ) );
|
|
|
|
|
// set bit-values at the nodes according to the counter-example
|
|
|
|
|
Gia_ManIncrementTravId( p->pAig );
|
|
|
|
|
Gia_ClassForEachObj( p->pAig, iRepr, Ent )
|
|
|
|
|
Ssc_GiaSimulatePattern_rec( p, Gia_ManObj(p->pAig, Ent) );
|
|
|
|
|
// refine one class using these bit-values
|
|
|
|
|
RetValue = Ssc_GiaSimClassRefineOneBit( p->pAig, iRepr );
|
|
|
|
|
// check that the candidate equivalence is indeed refined
|
|
|
|
|
assert( iRepr != Gia_ObjRepr(p->pAig, iObj) );
|
|
|
|
|
return RetValue;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-26 00:32:30 +02:00
|
|
|
/**Function*************************************************************
|
|
|
|
|
|
2013-04-28 03:37:39 +02:00
|
|
|
Synopsis []
|
2013-04-26 00:32:30 +02:00
|
|
|
|
2013-04-28 03:37:39 +02:00
|
|
|
Description []
|
2013-04-26 00:32:30 +02:00
|
|
|
|
|
|
|
|
SideEffects []
|
|
|
|
|
|
|
|
|
|
SeeAlso []
|
|
|
|
|
|
|
|
|
|
***********************************************************************/
|
|
|
|
|
Gia_Man_t * Ssc_PerformSweeping( Gia_Man_t * pAig, Gia_Man_t * pCare, Ssc_Pars_t * pPars )
|
|
|
|
|
{
|
|
|
|
|
Ssc_Man_t * p;
|
2013-05-08 19:24:00 +02:00
|
|
|
Gia_Man_t * pResult, * pTemp;
|
2013-04-28 03:37:39 +02:00
|
|
|
Gia_Obj_t * pObj, * pRepr;
|
2013-04-26 00:32:30 +02:00
|
|
|
clock_t clk, clkTotal = clock();
|
2013-05-06 09:44:21 +02:00
|
|
|
int i, fCompl, nRefined, status;
|
2013-04-28 07:38:01 +02:00
|
|
|
clk = clock();
|
2013-04-26 00:32:30 +02:00
|
|
|
assert( Gia_ManRegNum(pCare) == 0 );
|
2013-04-28 03:37:39 +02:00
|
|
|
assert( Gia_ManCiNum(pAig) == Gia_ManCiNum(pCare) );
|
2013-04-26 00:32:30 +02:00
|
|
|
assert( Gia_ManIsNormalized(pAig) );
|
|
|
|
|
assert( Gia_ManIsNormalized(pCare) );
|
|
|
|
|
// reset random numbers
|
|
|
|
|
Gia_ManRandom( 1 );
|
|
|
|
|
// sweeping manager
|
|
|
|
|
p = Ssc_ManStart( pAig, pCare, pPars );
|
|
|
|
|
if ( p == NULL )
|
|
|
|
|
return Gia_ManDup( pAig );
|
2013-04-29 04:17:59 +02:00
|
|
|
if ( p->pPars->fVerbose )
|
2013-05-06 09:44:21 +02:00
|
|
|
printf( "Care set produced %d hits out of %d.\n", Ssc_GiaEstimateCare(p->pFraig, 5), 640 );
|
2013-04-26 00:32:30 +02:00
|
|
|
// perform simulation
|
2013-05-06 09:44:21 +02:00
|
|
|
while ( 1 )
|
2013-04-26 00:32:30 +02:00
|
|
|
{
|
2013-05-06 09:44:21 +02:00
|
|
|
// simulate care set
|
|
|
|
|
Ssc_GiaRandomPiPattern( p->pFraig, 5, NULL );
|
|
|
|
|
Ssc_GiaSimRound( p->pFraig );
|
|
|
|
|
// transfer care patterns to user's AIG
|
|
|
|
|
if ( !Ssc_GiaTransferPiPattern( pAig, p->pFraig, p->vPivot ) )
|
|
|
|
|
break;
|
|
|
|
|
// simulate the main AIG
|
|
|
|
|
Ssc_GiaSimRound( pAig );
|
|
|
|
|
nRefined = Ssc_GiaClassesRefine( pAig );
|
|
|
|
|
if ( pPars->fVerbose )
|
2013-04-28 03:37:39 +02:00
|
|
|
Gia_ManEquivPrintClasses( pAig, 0, 0 );
|
2013-05-06 09:44:21 +02:00
|
|
|
if ( nRefined <= Gia_ManCandNum(pAig) / 100 )
|
|
|
|
|
break;
|
2013-04-26 00:32:30 +02:00
|
|
|
}
|
|
|
|
|
p->timeSimInit += clock() - clk;
|
2013-04-28 03:37:39 +02:00
|
|
|
|
|
|
|
|
// prepare user's AIG
|
|
|
|
|
Gia_ManFillValue(pAig);
|
|
|
|
|
Gia_ManConst0(pAig)->Value = 0;
|
|
|
|
|
Gia_ManForEachCi( pAig, pObj, i )
|
|
|
|
|
pObj->Value = Gia_Obj2Lit( p->pFraig, Gia_ManCi(p->pFraig, i) );
|
2013-04-29 04:17:59 +02:00
|
|
|
// Gia_ManLevelNum(pAig);
|
|
|
|
|
// prepare swept AIG (should be done after starting SAT solver in Ssc_ManStart)
|
|
|
|
|
Gia_ManHashStart( p->pFraig );
|
2013-04-28 03:37:39 +02:00
|
|
|
// perform sweeping
|
|
|
|
|
Ssc_GiaResetPiPattern( pAig, pPars->nWords );
|
|
|
|
|
Ssc_GiaSavePiPattern( pAig, p->vPivot );
|
|
|
|
|
Gia_ManForEachCand( pAig, pObj, i )
|
|
|
|
|
{
|
|
|
|
|
if ( pAig->iPatsPi == 64 * pPars->nWords )
|
|
|
|
|
{
|
2013-04-28 07:38:01 +02:00
|
|
|
clk = clock();
|
2013-04-28 03:37:39 +02:00
|
|
|
Ssc_GiaSimRound( pAig );
|
|
|
|
|
Ssc_GiaClassesRefine( pAig );
|
2013-04-28 07:38:01 +02:00
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
Gia_ManEquivPrintClasses( pAig, 0, 0 );
|
2013-04-28 03:37:39 +02:00
|
|
|
Ssc_GiaClassesCheckPairs( pAig, p->vDisPairs );
|
2013-04-28 07:38:01 +02:00
|
|
|
Vec_IntClear( p->vDisPairs );
|
|
|
|
|
// prepare next patterns
|
2013-04-28 03:37:39 +02:00
|
|
|
Ssc_GiaResetPiPattern( pAig, pPars->nWords );
|
|
|
|
|
Ssc_GiaSavePiPattern( pAig, p->vPivot );
|
2013-04-28 07:38:01 +02:00
|
|
|
p->timeSimSat += clock() - clk;
|
2013-04-29 04:17:59 +02:00
|
|
|
//printf( "\n" );
|
2013-04-28 03:37:39 +02:00
|
|
|
}
|
|
|
|
|
if ( Gia_ObjIsAnd(pObj) )
|
|
|
|
|
pObj->Value = Gia_ManHashAnd( p->pFraig, Gia_ObjFanin0Copy(pObj), Gia_ObjFanin1Copy(pObj) );
|
|
|
|
|
if ( !Gia_ObjHasRepr(pAig, i) )
|
|
|
|
|
continue;
|
|
|
|
|
pRepr = Gia_ObjReprObj(pAig, i);
|
2013-04-28 07:38:01 +02:00
|
|
|
if ( (int)pObj->Value == Abc_LitNotCond( pRepr->Value, pRepr->fPhase ^ pObj->fPhase ) )
|
2013-05-12 19:19:33 +02:00
|
|
|
{
|
|
|
|
|
Gia_ObjSetProved( pAig, i );
|
2013-04-28 03:37:39 +02:00
|
|
|
continue;
|
2013-05-12 19:19:33 +02:00
|
|
|
}
|
2013-04-28 03:37:39 +02:00
|
|
|
assert( Abc_Lit2Var(pRepr->Value) != Abc_Lit2Var(pObj->Value) );
|
|
|
|
|
fCompl = pRepr->fPhase ^ pObj->fPhase ^ Abc_LitIsCompl(pRepr->Value) ^ Abc_LitIsCompl(pObj->Value);
|
|
|
|
|
|
|
|
|
|
// perform SAT call
|
2013-04-28 07:38:01 +02:00
|
|
|
clk = clock();
|
2013-04-28 03:37:39 +02:00
|
|
|
p->nSatCalls++;
|
|
|
|
|
status = Ssc_ManCheckEquivalence( p, Abc_Lit2Var(pRepr->Value), Abc_Lit2Var(pObj->Value), fCompl );
|
|
|
|
|
if ( status == l_False )
|
|
|
|
|
{
|
|
|
|
|
p->nSatCallsUnsat++;
|
|
|
|
|
pObj->Value = Abc_LitNotCond( pRepr->Value, pRepr->fPhase ^ pObj->fPhase );
|
2013-05-08 03:11:29 +02:00
|
|
|
Gia_ObjSetProved( pAig, i );
|
2013-04-28 03:37:39 +02:00
|
|
|
}
|
|
|
|
|
else if ( status == l_True )
|
|
|
|
|
{
|
|
|
|
|
p->nSatCallsSat++;
|
|
|
|
|
Ssc_GiaSavePiPattern( pAig, p->vPattern );
|
|
|
|
|
Vec_IntPush( p->vDisPairs, Gia_ObjRepr(p->pAig, i) );
|
|
|
|
|
Vec_IntPush( p->vDisPairs, i );
|
2013-04-28 07:38:01 +02:00
|
|
|
// printf( "Try %2d and %2d: ", Gia_ObjRepr(p->pAig, i), i );
|
|
|
|
|
// Vec_IntPrint( p->vPattern );
|
2013-05-06 09:44:21 +02:00
|
|
|
if ( Gia_ObjRepr(p->pAig, i) > 0 )
|
|
|
|
|
Ssc_GiaResimulateOneClass( p, Gia_ObjRepr(p->pAig, i), i );
|
2013-04-28 03:37:39 +02:00
|
|
|
}
|
|
|
|
|
else if ( status == l_Undef )
|
|
|
|
|
p->nSatCallsUndec++;
|
|
|
|
|
else assert( 0 );
|
2013-04-28 07:38:01 +02:00
|
|
|
p->timeSat += clock() - clk;
|
|
|
|
|
}
|
|
|
|
|
if ( pAig->iPatsPi > 1 )
|
|
|
|
|
{
|
|
|
|
|
clk = clock();
|
|
|
|
|
while ( pAig->iPatsPi < 64 * pPars->nWords )
|
|
|
|
|
Ssc_GiaSavePiPattern( pAig, p->vPivot );
|
|
|
|
|
Ssc_GiaSimRound( pAig );
|
|
|
|
|
Ssc_GiaClassesRefine( pAig );
|
|
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
Gia_ManEquivPrintClasses( pAig, 0, 0 );
|
|
|
|
|
Ssc_GiaClassesCheckPairs( pAig, p->vDisPairs );
|
|
|
|
|
Vec_IntClear( p->vDisPairs );
|
|
|
|
|
p->timeSimSat += clock() - clk;
|
2013-04-28 03:37:39 +02:00
|
|
|
}
|
2013-04-28 07:38:01 +02:00
|
|
|
// Gia_ManEquivPrintClasses( pAig, 1, 0 );
|
2013-05-08 03:11:29 +02:00
|
|
|
// Gia_ManPrint( pAig );
|
2013-04-28 03:37:39 +02:00
|
|
|
|
2013-04-28 07:38:01 +02:00
|
|
|
// generate the resulting AIG
|
2013-05-08 03:11:29 +02:00
|
|
|
pResult = Gia_ManEquivReduce( pAig, 0, 0, 1, 0 );
|
2013-04-26 00:32:30 +02:00
|
|
|
if ( pResult == NULL )
|
|
|
|
|
{
|
|
|
|
|
printf( "There is no equivalences.\n" );
|
2013-04-28 07:38:01 +02:00
|
|
|
ABC_FREE( pAig->pReprs );
|
|
|
|
|
ABC_FREE( pAig->pNexts );
|
2013-04-26 00:32:30 +02:00
|
|
|
pResult = Gia_ManDup( pAig );
|
|
|
|
|
}
|
2013-05-08 19:24:00 +02:00
|
|
|
pResult = Gia_ManCleanup( pTemp = pResult );
|
|
|
|
|
Gia_ManStop( pTemp );
|
2013-04-28 07:38:01 +02:00
|
|
|
p->timeTotal = clock() - clkTotal;
|
|
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
Ssc_ManPrintStats( p );
|
2013-04-26 00:32:30 +02:00
|
|
|
Ssc_ManStop( p );
|
|
|
|
|
// count the number of representatives
|
|
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
{
|
2013-04-28 07:38:01 +02:00
|
|
|
Abc_Print( 1, "Reduction in AIG nodes:%8d ->%8d (%6.2f %%). ",
|
|
|
|
|
Gia_ManAndNum(pAig), Gia_ManAndNum(pResult),
|
|
|
|
|
100.0 - 100.0 * Gia_ManAndNum(pResult) / Gia_ManAndNum(pAig) );
|
2013-04-26 00:32:30 +02:00
|
|
|
Abc_PrintTime( 1, "Time", clock() - clkTotal );
|
|
|
|
|
}
|
|
|
|
|
return pResult;
|
|
|
|
|
}
|
|
|
|
|
Gia_Man_t * Ssc_PerformSweepingConstr( Gia_Man_t * p, Ssc_Pars_t * pPars )
|
|
|
|
|
{
|
|
|
|
|
Gia_Man_t * pAig, * pCare, * pResult;
|
|
|
|
|
int i;
|
2013-04-28 07:38:01 +02:00
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
Abc_Print( 0, "SAT sweeping AIG with %d constraints.\n", p->nConstrs );
|
2013-04-26 00:32:30 +02:00
|
|
|
if ( p->nConstrs == 0 )
|
|
|
|
|
{
|
|
|
|
|
pAig = Gia_ManDup( p );
|
2013-04-28 03:37:39 +02:00
|
|
|
pCare = Gia_ManStart( Gia_ManCiNum(p) + 2 );
|
2013-04-26 00:32:30 +02:00
|
|
|
pCare->pName = Abc_UtilStrsav( "care" );
|
2013-04-28 03:37:39 +02:00
|
|
|
for ( i = 0; i < Gia_ManCiNum(p); i++ )
|
2013-04-26 00:32:30 +02:00
|
|
|
Gia_ManAppendCi( pCare );
|
2013-04-28 03:37:39 +02:00
|
|
|
Gia_ManAppendCo( pCare, 0 );
|
2013-04-26 00:32:30 +02:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Vec_Int_t * vOuts = Vec_IntStartNatural( Gia_ManPoNum(p) );
|
|
|
|
|
pAig = Gia_ManDupCones( p, Vec_IntArray(vOuts), Gia_ManPoNum(p) - p->nConstrs, 0 );
|
|
|
|
|
pCare = Gia_ManDupCones( p, Vec_IntArray(vOuts) + Gia_ManPoNum(p) - p->nConstrs, p->nConstrs, 0 );
|
|
|
|
|
Vec_IntFree( vOuts );
|
|
|
|
|
}
|
2013-04-28 07:38:01 +02:00
|
|
|
if ( pPars->fVerbose )
|
|
|
|
|
{
|
|
|
|
|
printf( "User AIG: " );
|
|
|
|
|
Gia_ManPrintStats( pAig, 0, 0, 0 );
|
|
|
|
|
printf( "Care AIG: " );
|
|
|
|
|
Gia_ManPrintStats( pCare, 0, 0, 0 );
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 03:37:39 +02:00
|
|
|
pAig = Gia_ManDupLevelized( pResult = pAig );
|
|
|
|
|
Gia_ManStop( pResult );
|
2013-04-26 00:32:30 +02:00
|
|
|
pResult = Ssc_PerformSweeping( pAig, pCare, pPars );
|
2013-04-28 10:25:29 +02:00
|
|
|
if ( pPars->fAppend )
|
|
|
|
|
{
|
|
|
|
|
Gia_ManDupAppendShare( pResult, pCare );
|
|
|
|
|
pResult->nConstrs = Gia_ManPoNum(pCare);
|
|
|
|
|
}
|
2013-04-26 00:32:30 +02:00
|
|
|
Gia_ManStop( pAig );
|
|
|
|
|
Gia_ManStop( pCare );
|
|
|
|
|
return pResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/// END OF FILE ///
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ABC_NAMESPACE_IMPL_END
|
|
|
|
|
|