Skip to content

Commit 3726960

Browse files
fix #6969
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 589024a commit 3726960

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/smt/theory_lra.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -589,15 +589,11 @@ class theory_lra::imp {
589589

590590
void mk_clause(literal l1, literal l2, unsigned num_params, parameter * params) {
591591
TRACE("arith", literal lits[2]; lits[0] = l1; lits[1] = l2; ctx().display_literals_verbose(tout, 2, lits); tout << "\n";);
592-
// static unsigned num_bin = 0;
593-
// std::cout << "binary " << (num_bin++) << "\n";
594592
ctx().mk_th_lemma(get_id(), l1, l2, num_params, params);
595593
}
596594

597595
void mk_clause(literal l1, literal l2, literal l3, unsigned num_params, parameter * params) {
598596
TRACE("arith", literal lits[3]; lits[0] = l1; lits[1] = l2; lits[2] = l3; ctx().display_literals_smt2(tout, 3, lits); tout << "\n";);
599-
static unsigned num_ter = 0;
600-
std::cout << "ternary " << (num_ter++) << "\n";
601597
ctx().mk_th_axiom(get_id(), l1, l2, l3, num_params, params);
602598
}
603599

0 commit comments

Comments
 (0)