Commit c1d7f29d by Alan Mishchenko

Bug fix in 'testcex' when flop count in the CEX is different from the network…

Bug fix in 'testcex' when flop count in the CEX is different from the network (say, after seq synthesis).
parent d5a952c4
...@@ -729,7 +729,7 @@ int Abc_NtkVerifyCex( Abc_Ntk_t * pNtk, Abc_Cex_t * p ) ...@@ -729,7 +729,7 @@ int Abc_NtkVerifyCex( Abc_Ntk_t * pNtk, Abc_Cex_t * p )
int RetValue, i, k, iBit = 0; int RetValue, i, k, iBit = 0;
assert( Abc_NtkIsStrash(pNtk) ); assert( Abc_NtkIsStrash(pNtk) );
assert( p->nPis == Abc_NtkPiNum(pNtk) ); assert( p->nPis == Abc_NtkPiNum(pNtk) );
assert( p->nRegs == Abc_NtkLatchNum(pNtk) ); // assert( p->nRegs == Abc_NtkLatchNum(pNtk) );
Abc_NtkCleanMarkC( pNtk ); Abc_NtkCleanMarkC( pNtk );
Abc_AigConst1(pNtk)->fMarkC = 1; Abc_AigConst1(pNtk)->fMarkC = 1;
// initialize flops // initialize flops
......
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