summaryrefslogtreecommitdiffstats
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/abci/abc.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 89d1c6dd..5fa4d7fd 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -14890,6 +14890,13 @@ int Abc_CommandIf( Abc_Frame_t * pAbc, int argc, char ** argv )
pPars->nLutSize = pPars->nGateSize;
}
+ if ( pPars->fUseDsd )
+ {
+ pPars->fTruth = 1;
+ pPars->fCutMin = 1;
+ pPars->fUsePerm = 1;
+ }
+
if ( pPars->fUserRecLib )
{
if ( Abc_NtkRecIsRunning() + Abc_NtkRecIsRunning2() + Abc_NtkRecIsRunning3() != 1 )
@@ -27461,6 +27468,13 @@ int Abc_CommandAbc9If( Abc_Frame_t * pAbc, int argc, char ** argv )
pPars->nLutSize = pPars->nGateSize;
}
+ if ( pPars->fUseDsd )
+ {
+ pPars->fTruth = 1;
+ pPars->fCutMin = 1;
+ pPars->fUsePerm = 1;
+ }
+
// complain if truth tables are requested but the cut size is too large
if ( pPars->fTruth && pPars->nLutSize > IF_MAX_FUNC_LUTSIZE )
{