summaryrefslogtreecommitdiffstats
path: root/src/opt
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2021-07-31 15:34:46 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2021-07-31 15:34:46 -0700
commit692dd763190d2e2682c0eeabdcd81f16aaaabe94 (patch)
treea62ab7910e947f5967b90b527fdbaaf4785ee607 /src/opt
parentd925e4802cdbd89b1c7cee4fa1041b08cf0d32f7 (diff)
downloadabc-692dd763190d2e2682c0eeabdcd81f16aaaabe94.tar.gz
abc-692dd763190d2e2682c0eeabdcd81f16aaaabe94.tar.bz2
abc-692dd763190d2e2682c0eeabdcd81f16aaaabe94.zip
Upgrading choice computation.
Diffstat (limited to 'src/opt')
-rw-r--r--src/opt/dar/darScript.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opt/dar/darScript.c b/src/opt/dar/darScript.c
index 684e85e6..d95c23d7 100644
--- a/src/opt/dar/darScript.c
+++ b/src/opt/dar/darScript.c
@@ -848,7 +848,7 @@ pPars->timeSynth = Abc_Clock() - clk;
***********************************************************************/
Aig_Man_t * Dar_ManChoiceNew( Aig_Man_t * pAig, Dch_Pars_t * pPars )
{
- extern Aig_Man_t * Cec_ComputeChoicesNew( Gia_Man_t * pGia, int fVerbose );
+ extern Aig_Man_t * Cec_ComputeChoicesNew( Gia_Man_t * pGia, int nConfs, int fVerbose );
extern Aig_Man_t * Cec_ComputeChoices( Gia_Man_t * pGia, Dch_Pars_t * pPars );
// extern Aig_Man_t * Dch_DeriveTotalAig( Vec_Ptr_t * vAigs );
extern Aig_Man_t * Dch_ComputeChoices( Aig_Man_t * pAig, Dch_Pars_t * pPars );
@@ -872,7 +872,7 @@ pPars->timeSynth = Abc_Clock() - clk;
// perform choice computation
if ( pPars->fUseNew )
- pMan = Cec_ComputeChoicesNew( pGia, pPars->fVerbose );
+ pMan = Cec_ComputeChoicesNew( pGia, pPars->nBTLimit, pPars->fVerbose );
else if ( pPars->fUseGia )
pMan = Cec_ComputeChoices( pGia, pPars );
else