mirror of https://github.com/YosysHQ/abc.git
Uncommenting handling of initial values of the flops.
This commit is contained in:
parent
5585ce8aa6
commit
1e0bbef1ef
|
|
@ -5255,6 +5255,10 @@ SOURCE=.\src\proof\cec\cecSat.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\proof\cec\cecSatG.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\proof\cec\cecSeq.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
|
|
@ -90,8 +90,8 @@ int Gia_ManFindFailedPoCex( Gia_Man_t * pAig, Abc_Cex_t * p, int nOutputs )
|
|||
int RetValue, i, k, iBit = 0;
|
||||
assert( Gia_ManPiNum(pAig) == p->nPis );
|
||||
Gia_ManCleanMark0(pAig);
|
||||
// Gia_ManForEachRo( pAig, pObj, i )
|
||||
// pObj->fMark0 = Abc_InfoHasBit(p->pData, iBit++);
|
||||
Gia_ManForEachRo( pAig, pObj, i )
|
||||
pObj->fMark0 = Abc_InfoHasBit(p->pData, iBit++);
|
||||
iBit = p->nRegs;
|
||||
for ( i = 0; i <= p->iFrame; i++ )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -738,8 +738,8 @@ int Abc_NtkVerifyCex( Abc_Ntk_t * pNtk, Abc_Cex_t * p )
|
|||
Abc_NtkCleanMarkC( pNtk );
|
||||
Abc_AigConst1(pNtk)->fMarkC = 1;
|
||||
// initialize flops
|
||||
// Abc_NtkForEachLatch( pNtk, pObj, i )
|
||||
// Abc_ObjFanout0(pObj)->fMarkC = Abc_InfoHasBit(p->pData, iBit++);
|
||||
Abc_NtkForEachLatch( pNtk, pObj, i )
|
||||
Abc_ObjFanout0(pObj)->fMarkC = Abc_InfoHasBit(p->pData, iBit++);
|
||||
// simulate timeframes
|
||||
iBit = p->nRegs;
|
||||
for ( i = 0; i <= p->iFrame; i++ )
|
||||
|
|
|
|||
Loading…
Reference in New Issue