mirror of https://github.com/YosysHQ/abc.git
Bug fix in 'testcex' when flop count in the CEX is different from the network (say, after seq synthesis).
This commit is contained in:
parent
d5a952c462
commit
c1d7f29dbd
|
|
@ -729,7 +729,7 @@ int Abc_NtkVerifyCex( Abc_Ntk_t * pNtk, Abc_Cex_t * p )
|
|||
int RetValue, i, k, iBit = 0;
|
||||
assert( Abc_NtkIsStrash(pNtk) );
|
||||
assert( p->nPis == Abc_NtkPiNum(pNtk) );
|
||||
assert( p->nRegs == Abc_NtkLatchNum(pNtk) );
|
||||
// assert( p->nRegs == Abc_NtkLatchNum(pNtk) );
|
||||
Abc_NtkCleanMarkC( pNtk );
|
||||
Abc_AigConst1(pNtk)->fMarkC = 1;
|
||||
// initialize flops
|
||||
|
|
|
|||
Loading…
Reference in New Issue