summaryrefslogtreecommitdiffstats
path: root/src/proof
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2020-11-22 21:34:33 -1000
committerAlan Mishchenko <alanmi@berkeley.edu>2020-11-22 21:34:33 -1000
commit2e92256fb7bb64454a9f2c7b0bf8d1020b0ac78f (patch)
treeef6b616f0d98733a565ab9f0436f3c6729072f16 /src/proof
parent4757c7febc0cf13f477b9f548ac8aa8d967adad2 (diff)
downloadabc-2e92256fb7bb64454a9f2c7b0bf8d1020b0ac78f.tar.gz
abc-2e92256fb7bb64454a9f2c7b0bf8d1020b0ac78f.tar.bz2
abc-2e92256fb7bb64454a9f2c7b0bf8d1020b0ac78f.zip
Passing conflict limit to &cec.
Diffstat (limited to 'src/proof')
-rw-r--r--src/proof/cec/cecSatG2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proof/cec/cecSatG2.c b/src/proof/cec/cecSatG2.c
index 3e6372af..a6e99a3e 100644
--- a/src/proof/cec/cecSatG2.c
+++ b/src/proof/cec/cecSatG2.c
@@ -1802,12 +1802,13 @@ void Cec4_ManSimulateTest2( Gia_Man_t * p, int fVerbose )
if ( fVerbose )
Abc_PrintTime( 1, "New choice computation time", Abc_Clock() - clk );
}
-Gia_Man_t * Cec4_ManSimulateTest3( Gia_Man_t * p, int fVerbose )
+Gia_Man_t * Cec4_ManSimulateTest3( Gia_Man_t * p, int nBTLimit, int fVerbose )
{
Gia_Man_t * pNew = NULL;
Cec_ParFra_t ParsFra, * pPars = &ParsFra;
Cec4_ManSetParams( pPars );
pPars->fVerbose = fVerbose;
+ pPars->nBTLimit = nBTLimit;
Cec4_ManPerformSweeping( p, pPars, &pNew );
return pNew;
}