mirror of https://github.com/YosysHQ/abc.git
Sequential word-level simulator for Wlc_Ntk_t (bug fix).
This commit is contained in:
parent
0489deb631
commit
8452f5cff3
|
|
@ -51,6 +51,8 @@ void Gia_ManDupRemapLiterals( Vec_Int_t * vLits, Gia_Man_t * p )
|
|||
int i, iLit, iLitNew;
|
||||
Vec_IntForEachEntry( vLits, iLit, i )
|
||||
{
|
||||
if ( iLit < 0 )
|
||||
continue;
|
||||
pObj = Gia_ManObj( p, Abc_Lit2Var(iLit) );
|
||||
if ( ~pObj->Value == 0 )
|
||||
iLitNew = -1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue