summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index c192b809..d3e3357d 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -13374,7 +13374,14 @@ int Abc_CommandMap( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( fSweep )
+ {
Abc_NtkFraigSweep( pNtkRes, 0, 0, 0, 0 );
+ if ( Abc_NtkHasMapping(pNtkRes) )
+ {
+ pNtkRes = Abc_NtkDupDfs( pNtk = pNtkRes );
+ Abc_NtkDelete( pNtk );
+ }
+ }
// replace the current network
Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes );
@@ -13526,8 +13533,14 @@ int Abc_CommandAmap( Abc_Frame_t * pAbc, int argc, char ** argv )
}
if ( fSweep )
+ {
Abc_NtkFraigSweep( pNtkRes, 0, 0, 0, 0 );
-
+ if ( Abc_NtkHasMapping(pNtkRes) )
+ {
+ pNtkRes = Abc_NtkDupDfs( pNtk = pNtkRes );
+ Abc_NtkDelete( pNtk );
+ }
+ }
// replace the current network
Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes );
return 0;