From dcd95cac6fb3343c90c5cf0ce15ed2d911f5e7d1 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Tue, 14 Jun 2011 23:02:34 -0700 Subject: Disabled duplication of the network while removing POs in 'removepo'. --- src/base/abci/abc.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 0d3795ea..196545c1 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -5889,7 +5889,7 @@ usage: ***********************************************************************/ int Abc_CommandRemovePo( Abc_Frame_t * pAbc, int argc, char ** argv ) { - Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc), * pNtkRes; + Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc), * pNtkRes = NULL; int c, iOutput = -1; extern void Abc_NtkRemovePo( Abc_Ntk_t * pNtk, int iOutput ); @@ -5938,9 +5938,10 @@ int Abc_CommandRemovePo( Abc_Frame_t * pAbc, int argc, char ** argv ) } // get the new network - pNtkRes = Abc_NtkDup( pNtk ); - Abc_NtkRemovePo( pNtkRes, iOutput ); - Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes ); +// pNtkRes = Abc_NtkDup( pNtk ); +// Abc_NtkRemovePo( pNtkRes, iOutput ); +// Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes ); + Abc_NtkRemovePo( pNtk, iOutput ); return 0; usage: -- cgit v1.2.3