summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-03-31 16:27:07 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-03-31 16:27:07 +0700
commit6f598455bcdf55bdd997bfeb82129d770f745e35 (patch)
treef17c7d7ab3f7087ba27fd6619c4f73e6948cdca2 /src
parent5ebe403a8770d51994e9a89cb44a90327e2551f4 (diff)
downloadabc-6f598455bcdf55bdd997bfeb82129d770f745e35.tar.gz
abc-6f598455bcdf55bdd997bfeb82129d770f745e35.tar.bz2
abc-6f598455bcdf55bdd997bfeb82129d770f745e35.zip
Updating command &satfx.
Diffstat (limited to 'src')
-rw-r--r--src/base/abci/abc.c35
-rw-r--r--src/sat/bmc/bmcFx.c4
2 files changed, 26 insertions, 13 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 55bda0db..901e0047 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -36666,22 +36666,36 @@ usage:
int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv )
{
extern int Bmc_FxCompute( Gia_Man_t * p );
- extern int Bmc_FxComputeOne( Gia_Man_t * p );
- int c, nFrames = 1000, fDec = 0, fVerbose = 0;
+ extern int Bmc_FxComputeOne( Gia_Man_t * p, int nIterMax, int nDiv2Add );
+ int nIterMax = 5;
+ int nDiv2Add = 10;
+ int c, fDec = 1;
+ int fVerbose = 0;
Extra_UtilGetoptReset();
- while ( ( c = Extra_UtilGetopt( argc, argv, "Fdvh" ) ) != EOF )
+ while ( ( c = Extra_UtilGetopt( argc, argv, "IDdvh" ) ) != EOF )
{
switch ( c )
{
- case 'F':
+ case 'I':
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;
}
- nFrames = atoi(argv[globalUtilOptind]);
+ nIterMax = atoi(argv[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;
break;
case 'd':
@@ -36702,15 +36716,16 @@ int Abc_CommandAbc9SatFx( Abc_Frame_t * pAbc, int argc, char ** argv )
return 0;
}
if ( fDec )
- Bmc_FxComputeOne( pAbc->pGia );
+ Bmc_FxComputeOne( pAbc->pGia, nIterMax, nDiv2Add );
else
Bmc_FxCompute( pAbc->pGia );
return 0;
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-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-v : toggles printing verbose information [default = %s]\n", fVerbose? "yes": "no" );
Abc_Print( -2, "\t-h : print the command usage\n");
diff --git a/src/sat/bmc/bmcFx.c b/src/sat/bmc/bmcFx.c
index 1d3a9802..5482dcd3 100644
--- a/src/sat/bmc/bmcFx.c
+++ b/src/sat/bmc/bmcFx.c
@@ -670,11 +670,9 @@ void Bmc_FxAddClauses( sat_solver * pSat, Vec_Int_t * vDivs, int iCiVarBeg, int
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 nIterMax = 5;
- int nDiv2Add = 15;
// create SAT solver
Cnf_Dat_t * pCnf = Mf_ManGenerateCnf( p, 8, 0, 0, 0 );
sat_solver * pSat = (sat_solver *)Cnf_DataWriteIntoSolver( pCnf, 1, 0 );