mirror of https://github.com/YosysHQ/abc.git
Fix in reading initial state for edge-detection.
This commit is contained in:
parent
0f59f00c74
commit
190dc37600
|
|
@ -267,6 +267,10 @@ SOURCE=.\src\base\abci\abcDsd.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\base\abci\abcExact.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\src\base\abci\abcExtract.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
|
|
@ -605,6 +605,8 @@ void Sle_ManDeriveInit( Sle_Man_t * p )
|
|||
assert( Gia_ObjIsAnd(Gia_ManObj(p->pGia, iObj)) );
|
||||
// find edge
|
||||
iEdge = Vec_IntFind( Vec_WecEntry(p->vCutFanins, iObj), iFanin );
|
||||
if ( iEdge < 0 )
|
||||
continue;
|
||||
assert( iEdge >= 0 );
|
||||
Vec_IntPush( p->vPolars, Vec_IntEntry(p->vEdgeFirst, iObj) + iEdge ); // edge
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue