Skip to content

Commit

Permalink
remove experiment with theory lemmas
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Oct 30, 2023
1 parent 3726960 commit a957a56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ class theory_lra::imp {

void mk_clause(literal l1, literal l2, unsigned num_params, parameter * params) {
TRACE("arith", literal lits[2]; lits[0] = l1; lits[1] = l2; ctx().display_literals_verbose(tout, 2, lits); tout << "\n";);
ctx().mk_th_lemma(get_id(), l1, l2, num_params, params);
ctx().mk_th_axiom(get_id(), l1, l2, num_params, params);
}

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

Expand Down

0 comments on commit a957a56

Please sign in to comment.