Commit bfa48cef by Alan Mishchenko

Experiment with support minimization.

parent ed1a925c
...@@ -6330,6 +6330,7 @@ usage: ...@@ -6330,6 +6330,7 @@ usage:
int Abc_CommandVarMin( Abc_Frame_t * pAbc, int argc, char ** argv ) 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_SuppTest( int nOnes, int nVars, int fUseSimple, int fCheck, int fVerbose );
extern void Abc_SuppReadMinTest( char * pFileName );
int nOnes = 4; int nOnes = 4;
int nVars = 20; int nVars = 20;
int fUseSimple = 0; int fUseSimple = 0;
...@@ -6378,6 +6379,12 @@ int Abc_CommandVarMin( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -6378,6 +6379,12 @@ int Abc_CommandVarMin( Abc_Frame_t * pAbc, int argc, char ** argv )
goto usage; goto usage;
} }
} }
// get the file name
if ( argc == globalUtilOptind + 1 )
{
Abc_SuppReadMinTest( argv[globalUtilOptind] );
return 0;
}
Abc_SuppTest( nOnes, nVars, fUseSimple, fCheck, fVerbose ); Abc_SuppTest( nOnes, nVars, fUseSimple, fCheck, fVerbose );
return 0; return 0;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment