From 8889ccb18c8da84fcb36abc226ff30702e2db215 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 26 May 2021 23:25:08 -0700 Subject: Updating LUT synthesis code. --- src/bool/kit/kitGraph.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/bool/kit/kitGraph.c') 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) ) -- cgit v1.2.3