summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcLutmin.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2018-06-07 15:53:12 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2018-06-07 15:53:12 -0700
commitb729c737b5aee67bbc92d9b102af8ce24a222140 (patch)
tree0b3536b0aa8439e88ca7b2b300174565b98ffa2a /src/base/abci/abcLutmin.c
parentaae37ffd4ce42d64677fc9ab51ad98ec3ab2aae0 (diff)
downloadabc-b729c737b5aee67bbc92d9b102af8ce24a222140.tar.gz
abc-b729c737b5aee67bbc92d9b102af8ce24a222140.tar.bz2
abc-b729c737b5aee67bbc92d9b102af8ce24a222140.zip
Adding switch 'clp -o' to reverse initial variable ordering.
Diffstat (limited to 'src/base/abci/abcLutmin.c')
-rw-r--r--src/base/abci/abcLutmin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abci/abcLutmin.c b/src/base/abci/abcLutmin.c
index ad686299..2ac44060 100644
--- a/src/base/abci/abcLutmin.c
+++ b/src/base/abci/abcLutmin.c
@@ -739,7 +739,7 @@ Abc_Ntk_t * Abc_NtkLutmin( Abc_Ntk_t * pNtkInit, int nLutSize, int fVerbose )
else
pNtkNew = Abc_NtkStrash( pNtkInit, 0, 1, 0 );
// collapse the network
- pNtkNew = Abc_NtkCollapse( pTemp = pNtkNew, 10000, 0, 1, 0 );
+ pNtkNew = Abc_NtkCollapse( pTemp = pNtkNew, 10000, 0, 1, 0, 0 );
Abc_NtkDelete( pTemp );
if ( pNtkNew == NULL )
return NULL;