summaryrefslogtreecommitdiffstats
path: root/src/bool
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2021-05-26 23:25:08 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2021-05-26 23:25:08 -0700
commit8889ccb18c8da84fcb36abc226ff30702e2db215 (patch)
tree8dbe62b23fdc887b5a267d21511df9830e21bfc7 /src/bool
parent49078ffebf4d87165c625a0dad249e039adeb952 (diff)
downloadabc-8889ccb18c8da84fcb36abc226ff30702e2db215.tar.gz
abc-8889ccb18c8da84fcb36abc226ff30702e2db215.tar.bz2
abc-8889ccb18c8da84fcb36abc226ff30702e2db215.zip
Updating LUT synthesis code.
Diffstat (limited to 'src/bool')
-rw-r--r--src/bool/kit/kitGraph.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bool/kit/kitGraph.c b/src/bool/kit/kitGraph.c
index 9d7189a2..a81b6404 100644
--- a/src/bool/kit/kitGraph.c
+++ b/src/bool/kit/kitGraph.c
@@ -19,6 +19,7 @@
***********************************************************************/
#include "kit.h"
+#include "misc/extra/extra.h"
ABC_NAMESPACE_IMPL_START
@@ -385,7 +386,7 @@ Kit_Graph_t * Kit_TruthToGraph2( unsigned * pTruth0, unsigned * pTruth1, int nVa
Kit_Graph_t * pGraph;
int RetValue;
// derive SOP
- RetValue = Kit_TruthIsop2( pTruth0, pTruth1, nVars, vMemory, 1, 0 ); // tried 1 and found not useful in "renode"
+ RetValue = Kit_TruthIsop2( pTruth0, pTruth1, nVars, vMemory, 0, 0 ); // tried 1 and found not useful in "renode"
if ( RetValue == -1 )
return NULL;
if ( Vec_IntSize(vMemory) > (1<<16) )