Commit 6f598455 by Alan Mishchenko

Updating command &satfx.

parent 5ebe403a
...@@ -36666,22 +36666,36 @@ usage: ...@@ -36666,22 +36666,36 @@ usage:
int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv ) int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv )
{ {
extern int Bmc_FxCompute( Gia_Man_t * p ); extern int Bmc_FxCompute( Gia_Man_t * p );
extern int Bmc_FxComputeOne( Gia_Man_t * p ); extern int Bmc_FxComputeOne( Gia_Man_t * p, int nIterMax, int nDiv2Add );
int c, nFrames = 1000, fDec = 0, fVerbose = 0; int nIterMax = 5;
int nDiv2Add = 10;
int c, fDec = 1;
int fVerbose = 0;
Extra_UtilGetoptReset(); Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Fdvh" ) ) != EOF ) while ( ( c = Extra_UtilGetopt( argc, argv, "IDdvh" ) ) != EOF )
{ {
switch ( c ) switch ( c )
{ {
case 'F': case 'I':
if ( globalUtilOptind >= argc ) if ( globalUtilOptind >= argc )
{ {
Abc_Print( -1, "Command line switch \"-F\" should be followed by an integer.\n" ); Abc_Print( -1, "Command line switch \"-I\" should be followed by an integer.\n" );
goto usage; goto usage;
} }
nFrames = atoi(argv[globalUtilOptind]); nIterMax = atoi(argv[globalUtilOptind]);
globalUtilOptind++; globalUtilOptind++;
if ( nFrames < 0 ) if ( nIterMax < 0 )
goto usage;
break;
case 'D':
if ( globalUtilOptind >= argc )
{
Abc_Print( -1, "Command line switch \"-D\" should be followed by an integer.\n" );
goto usage;
}
nDiv2Add = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
if ( nDiv2Add < 0 )
goto usage; goto usage;
break; break;
case 'd': case 'd':
...@@ -36702,15 +36716,16 @@ int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -36702,15 +36716,16 @@ int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv )
return 0; return 0;
} }
if ( fDec ) if ( fDec )
Bmc_FxComputeOne( pAbc->pGia ); Bmc_FxComputeOne( pAbc->pGia, nIterMax, nDiv2Add );
else else
Bmc_FxCompute( pAbc->pGia ); Bmc_FxCompute( pAbc->pGia );
return 0; return 0;
usage: usage:
Abc_Print( -2, "usage: &satfx [-F num] [-dvh]\n" ); Abc_Print( -2, "usage: &satfx [-ID num] [-dvh]\n" );
Abc_Print( -2, "\t performs SAT based shared logic extraction\n" ); Abc_Print( -2, "\t performs SAT based shared logic extraction\n" );
Abc_Print( -2, "\t-F num : the number of timeframes [default = %d]\n", nFrames ); Abc_Print( -2, "\t-I num : the number of iterations of divisor extraction [default = %d]\n", nIterMax );
Abc_Print( -2, "\t-D num : the number of divisors to extract in each iteration [default = %d]\n", nDiv2Add );
Abc_Print( -2, "\t-d : toggles decomposing the first output [default = %s]\n", fDec? "yes": "no" ); Abc_Print( -2, "\t-d : toggles decomposing the first output [default = %s]\n", fDec? "yes": "no" );
Abc_Print( -2, "\t-v : toggles printing verbose information [default = %s]\n", fVerbose? "yes": "no" ); Abc_Print( -2, "\t-v : toggles printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n"); Abc_Print( -2, "\t-h : print the command usage\n");
...@@ -670,11 +670,9 @@ void Bmc_FxAddClauses( sat_solver * pSat, Vec_Int_t * vDivs, int iCiVarBeg, int ...@@ -670,11 +670,9 @@ void Bmc_FxAddClauses( sat_solver * pSat, Vec_Int_t * vDivs, int iCiVarBeg, int
else assert( 0 ); else assert( 0 );
} }
} }
int Bmc_FxComputeOne( Gia_Man_t * p ) int Bmc_FxComputeOne( Gia_Man_t * p, int nIterMax, int nDiv2Add )
{ {
int Extra = 1000; int Extra = 1000;
int nIterMax = 5;
int nDiv2Add = 15;
// create SAT solver // create SAT solver
Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 ); Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 );
sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 ); sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 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