Skip to content

Commit 1211244

Browse files
committed
Disable CDNF/CCNF printing
1 parent 3dd45ef commit 1211244

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,12 @@ void bt_process_expression(const char *expr_str)
115115

116116
bt_formula_print_truth_table(formula);
117117

118+
/* These are disabled, because buggy.
118119
printf("Canonical DNF:\n");
119120
bt_formula_print_cdnf(formula);
120121
printf("\nCanonical CNF:\n");
121122
bt_formula_print_ccnf(formula);
123+
*/
122124

123125
bt_formula_destroy(formula);
124126
}

0 commit comments

Comments
 (0)