summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
authorBruno Schmitt <bruno@oschmitt.com>2016-06-02 17:26:12 -0300
committerBruno Schmitt <bruno@oschmitt.com>2016-06-02 17:26:12 -0300
commitb6ab0879524c6bf170b41a2605f61d1c23fe07b1 (patch)
tree0c4863ddcba3e2942ed2f3c2097904e45d703605 /src/base
parent4937fb09edac78dbc7b785e08fad0c5c5e2af315 (diff)
downloadabc-b6ab0879524c6bf170b41a2605f61d1c23fe07b1.tar.gz
abc-b6ab0879524c6bf170b41a2605f61d1c23fe07b1.tar.bz2
abc-b6ab0879524c6bf170b41a2605f61d1c23fe07b1.zip
Removing the memory saving mode, it is no longer necessary.
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index aa2d5598..b09a3001 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -4137,17 +4137,16 @@ usage:
***********************************************************************/
static int Abc_CommandFxch( Abc_Frame_t * pAbc, int argc, char ** argv )
{
- extern int Abc_NtkFxchPerform( Abc_Ntk_t * pNtk, int nMaxDivExt, int SMode, int fVerbose, int fVeryVerbose );
+ extern int Abc_NtkFxchPerform( Abc_Ntk_t * pNtk, int nMaxDivExt, int fVerbose, int fVeryVerbose );
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
int c,
nMaxDivExt = 0,
- SMode = 0,
fVerbose = 0,
fVeryVerbose = 0;
Extra_UtilGetoptReset();
- while ( (c = Extra_UtilGetopt(argc, argv, "Nsvwh")) != EOF )
+ while ( (c = Extra_UtilGetopt(argc, argv, "Nvwh")) != EOF )
{
switch (c)
{
@@ -4164,10 +4163,6 @@ static int Abc_CommandFxch( Abc_Frame_t * pAbc, int argc, char ** argv )
goto usage;
break;
- case 's':
- SMode ^= 1;
- break;
-
case 'v':
fVerbose ^= 1;
break;
@@ -4206,7 +4201,7 @@ static int Abc_CommandFxch( Abc_Frame_t * pAbc, int argc, char ** argv )
return 1;
}
- Abc_NtkFxchPerform( pNtk, nMaxDivExt, SMode, fVerbose, fVeryVerbose );
+ Abc_NtkFxchPerform( pNtk, nMaxDivExt, fVerbose, fVeryVerbose );
return 0;
@@ -4214,7 +4209,6 @@ usage:
Abc_Print( -2, "usage: fxch [-N <num>] [-svwh]\n");
Abc_Print( -2, "\t performs fast extract with cube hashing on the current network\n");
Abc_Print( -2, "\t-N <num> : max number of divisors to extract during this run [default = unused]\n" );
- Abc_Print( -2, "\t-s : memory saving mode (slower) [default = %d]\n", SMode? "yes": "no" );
Abc_Print( -2, "\t-v : print verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-w : print additional information [default = %s]\n", fVeryVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");