summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 83fd0933..bdf57e55 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -6330,6 +6330,7 @@ usage:
int Abc_CommandVarMin( Abc_Frame_t * pAbc, int argc, char ** argv )
{
extern void Abc_SuppTest( int nOnes, int nVars, int fUseSimple, int fCheck, int fVerbose );
+ extern void Abc_SuppReadMinTest( char * pFileName );
int nOnes = 4;
int nVars = 20;
int fUseSimple = 0;
@@ -6378,6 +6379,12 @@ int Abc_CommandVarMin( Abc_Frame_t * pAbc, int argc, char ** argv )
goto usage;
}
}
+ // get the file name
+ if ( argc == globalUtilOptind + 1 )
+ {
+ Abc_SuppReadMinTest( argv[globalUtilOptind] );
+ return 0;
+ }
Abc_SuppTest( nOnes, nVars, fUseSimple, fCheck, fVerbose );
return 0;