diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-06 18:48:35 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-07-06 18:48:35 -0700 |
commit | 23467b83b6ebe58cede0bfe77dd623f66c7e3bb1 (patch) | |
tree | 28cec250f95114c899ee9ef8214de8e254787388 /src/proof | |
parent | 573749ba19ac68197afe3291b18a67c2764bfffc (diff) | |
download | abc-23467b83b6ebe58cede0bfe77dd623f66c7e3bb1.tar.gz abc-23467b83b6ebe58cede0bfe77dd623f66c7e3bb1.tar.bz2 abc-23467b83b6ebe58cede0bfe77dd623f66c7e3bb1.zip |
Setting infinite default conflict limits in 'bmc', 'int', 'pdr'.
Diffstat (limited to 'src/proof')
-rw-r--r-- | src/proof/int/intCore.c | 4 | ||||
-rw-r--r-- | src/proof/pdr/pdrCore.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/proof/int/intCore.c b/src/proof/int/intCore.c index 8bef9c59..d4ef1f94 100644 --- a/src/proof/int/intCore.c +++ b/src/proof/int/intCore.c @@ -45,8 +45,8 @@ ABC_NAMESPACE_IMPL_START void Inter_ManSetDefaultParams( Inter_ManParams_t * p ) { memset( p, 0, sizeof(Inter_ManParams_t) ); - p->nBTLimit = 10000; // limit on the number of conflicts - p->nFramesMax = 40; // the max number timeframes to unroll + p->nBTLimit = 0; // limit on the number of conflicts + p->nFramesMax = 0; // the max number timeframes to unroll p->nSecLimit = 0; // time limit in seconds p->nFramesK = 1; // the number of timeframes to use in induction p->fRewrite = 0; // use additional rewriting to simplify timeframes diff --git a/src/proof/pdr/pdrCore.c b/src/proof/pdr/pdrCore.c index f863a881..3e006c4e 100644 --- a/src/proof/pdr/pdrCore.c +++ b/src/proof/pdr/pdrCore.c @@ -47,9 +47,9 @@ void Pdr_ManSetDefaultParams( Pdr_Par_t * pPars ) memset( pPars, 0, sizeof(Pdr_Par_t) ); pPars->iOutput = -1; // zero-based output number pPars->nRecycle = 300; // limit on vars for recycling - pPars->nFrameMax = 5000; // limit on number of timeframes + pPars->nFrameMax = 10000; // limit on number of timeframes pPars->nTimeOut = 0; // timeout in seconds - pPars->nConfLimit = 100000; // limit on SAT solver conflicts + pPars->nConfLimit = 0; // limit on SAT solver conflicts pPars->nRestLimit = 0; // limit on the number of proof-obligations pPars->fTwoRounds = 0; // use two rounds for generalization pPars->fMonoCnf = 0; // monolythic CNF |