mirror of https://github.com/YosysHQ/abc.git
Undoing a previuos change to not reset the status after &put.
This commit is contained in:
parent
db3a005402
commit
8ba2398138
|
|
@ -22035,7 +22035,7 @@ int Abc_CommandAbc9Put( Abc_Frame_t * pAbc, int argc, char ** argv )
|
|||
}
|
||||
// replace the current network
|
||||
Abc_FrameReplaceCurrentNetwork( pAbc, pNtk );
|
||||
// Abc_FrameClearVerifStatus( pAbc );
|
||||
Abc_FrameClearVerifStatus( pAbc );
|
||||
return 0;
|
||||
|
||||
usage:
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ Vec_Int_t * Amap_LibDeriveGatePerm_rec( Amap_Lib_t * pLib, Kit_DsdNtk_t * pNtk,
|
|||
iDsdLit = 0;
|
||||
Vec_IntForEachEntry( vNodFanin, iNodFanin, k )
|
||||
{
|
||||
if ( iNodFanin == 0 )
|
||||
if ( iNodFanin == 0 && iDsdLit < Vec_IntSize(vDsdLits) )
|
||||
{
|
||||
iDsdFanin = Vec_IntEntry( vDsdLits, iDsdLit++ );
|
||||
Vec_IntPush( vPerm, iDsdFanin );
|
||||
|
|
@ -304,6 +304,8 @@ int Amap_LibDeriveGatePerm( Amap_Lib_t * pLib, Amap_Gat_t * pGate, Kit_DsdNtk_t
|
|||
int fVerbose = 0;
|
||||
Vec_Int_t * vPerm;
|
||||
int Entry, Entry2, i, k;
|
||||
// Kit_DsdPrint( stdout, pNtk );
|
||||
|
||||
vPerm = Amap_LibDeriveGatePerm_rec( pLib, pNtk, Abc_LitRegular(pNtk->Root), pNod );
|
||||
if ( vPerm == NULL )
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue