Skip to content

Commit

Permalink
#5614 turn on / off options to get better performance.
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 12, 2021
1 parent b28a801 commit 63ac2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/math/lp/lp_bound_propagator.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class lp_bound_propagator {
unsigned v_j = v->column();
unsigned j = null_lpvar;
if (!lp().find_in_fixed_tables(val(v_j), is_int(v_j), j)) {
// try_add_equation_with_internal_fixed_tables(row_index, v);
try_add_equation_with_internal_fixed_tables(row_index, v);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2084,7 +2084,7 @@ class theory_lra::imp {
while (m_asserted_qhead < m_asserted_atoms.size() && !ctx().inconsistent() && m.inc()) {
auto [bv, is_true] = m_asserted_atoms[m_asserted_qhead];

m_bv_to_propagate.push_back(bv);
// m_bv_to_propagate.push_back(bv);

api_bound* b = nullptr;
TRACE("arith", tout << "propagate: " << literal(bv, !is_true) << "\n";
Expand Down

0 comments on commit 63ac2ee

Please sign in to comment.