Experiment with support minimization.

This commit is contained in:
Alan Mishchenko
2014-05-27 01:12:00 +09:00
parent ed1a925c61
commit bfa48cef2a
2 changed files with 449 additions and 57 deletions
+7
View File
@@ -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;