summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abc.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-10-23 15:44:53 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-10-23 15:44:53 -0700
commit701565eb7bd5b464f530e9816e8f4de8ceb98534 (patch)
tree5e9d23e1b0509fcc5817e233331e50a8bc4daf16 /src/base/abci/abc.c
parent637da8baeaabf6f12aa8d9ec287aa675d9ea5fab (diff)
downloadabc-701565eb7bd5b464f530e9816e8f4de8ceb98534.tar.gz
abc-701565eb7bd5b464f530e9816e8f4de8ceb98534.tar.bz2
abc-701565eb7bd5b464f530e9816e8f4de8ceb98534.zip
Set the default cube limit in 'satclp' to be 0.
Diffstat (limited to 'src/base/abci/abc.c')
-rw-r--r--src/base/abci/abc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 9b62c622..c1f7eb5a 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -3102,8 +3102,8 @@ usage:
int Abc_CommandSatClp( Abc_Frame_t * pAbc, int argc, char ** argv )
{
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc), * pNtkRes;
- int nCubeLim = 1000;
- int nBTLimit = 1000000;
+ int nCubeLim = 0;
+ int nBTLimit = 1000000;
int nCostMax = 20000000;
int fCanon = 0;
int fReverse = 0;