summaryrefslogtreecommitdiffstats
path: root/src/bool/kit/kitGraph.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2020-04-02 18:29:39 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2020-04-02 18:29:39 -0700
commit5a20a27c620563e90694462df299dc3933844670 (patch)
tree20998cfcd443f35916bcf172566f68eff5cc15dc /src/bool/kit/kitGraph.c
parent65dce2fa8084617ec3e5df3ed04bf3031234ae14 (diff)
downloadabc-5a20a27c620563e90694462df299dc3933844670.tar.gz
abc-5a20a27c620563e90694462df299dc3933844670.tar.bz2
abc-5a20a27c620563e90694462df299dc3933844670.zip
Extend ISOP to return the truth table.
Diffstat (limited to 'src/bool/kit/kitGraph.c')
-rw-r--r--src/bool/kit/kitGraph.c2
1 files changed, 1 insertions, 1 deletions
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) )