mirror of https://github.com/YosysHQ/abc.git
Bug fix in GLA PBA.
This commit is contained in:
parent
e43c0d8708
commit
21de666005
|
|
@ -1684,7 +1684,10 @@ Gia_Man_t * Gia_ManDupAbsGates( Gia_Man_t * p, Vec_Int_t * vGateClasses )
|
|||
assert( !Gia_LitIsCompl(pObj->Value) );
|
||||
pCopy = Gia_ObjCopy( pTemp, pObj );
|
||||
if ( !~pCopy->Value )
|
||||
{
|
||||
pObj->Value = ~0;
|
||||
continue;
|
||||
}
|
||||
assert( !Gia_LitIsCompl(pCopy->Value) );
|
||||
pObj->Value = pCopy->Value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue