Skip to content

Commit a957a56

Browse files
committedOct 30, 2023
remove experiment with theory lemmas
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 3726960 commit a957a56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/smt/theory_lra.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ 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-
ctx().mk_th_lemma(get_id(), l1, l2, num_params, params);
592+
ctx().mk_th_axiom(get_id(), l1, l2, num_params, params);
593593
}
594594

595595
void mk_clause(literal l1, literal l2, literal l3, unsigned num_params, parameter * params) {
@@ -3342,7 +3342,7 @@ class theory_lra::imp {
33423342
// The lemmas can come in batches
33433343
// and the same literal can appear in several lemmas in a batch: it becomes l_true
33443344
// in earlier processing, but it was not so when the lemma was produced
3345-
ctx().mk_th_lemma(get_id(), m_core.size(), m_core.data());
3345+
ctx().mk_th_axiom(get_id(), m_core.size(), m_core.data());
33463346
}
33473347
}
33483348

0 commit comments

Comments
 (0)
Please sign in to comment.