From 5a20a27c620563e90694462df299dc3933844670 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Thu, 2 Apr 2020 18:29:39 -0700 Subject: Extend ISOP to return the truth table. --- src/bool/kit/kitGraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bool/kit/kitGraph.c') diff --git a/src/bool/kit/kitGraph.c b/src/bool/kit/kitGraph.c index 2ee135e2..0e548575 100644 --- a/src/bool/kit/kitGraph.c +++ b/src/bool/kit/kitGraph.c @@ -385,7 +385,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 ); // tried 1 and found not useful in "renode" + RetValue = Kit_TruthIsop2( pTruth0, pTruth1, nVars, vMemory, 1, 0 ); // tried 1 and found not useful in "renode" if ( RetValue == -1 ) return NULL; if ( Vec_IntSize(vMemory) > (1<<16) ) -- cgit v1.2.3