mirror of
https://github.com/Z3Prover/z3
synced 2025-06-16 10:56:16 +00:00
testing cheap equalities
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
6c115bf896
commit
67eaff4490
2 changed files with 5 additions and 5 deletions
|
@ -216,7 +216,7 @@ public:
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (x_index == UINT_MAX && y_index == UINT_MAX)
|
if (x_index == UINT_MAX || y_index == UINT_MAX)
|
||||||
return false;
|
return false;
|
||||||
if (lp().column_is_int(row[x_index].var()) != lp().column_is_int(row[y_index].var()))
|
if (lp().column_is_int(row[x_index].var()) != lp().column_is_int(row[y_index].var()))
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -755,10 +755,10 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup::setup_lra_arith() {
|
void setup::setup_lra_arith() {
|
||||||
// if (m_params.m_arith_mode == AS_OLD_ARITH)
|
if (m_params.m_arith_mode == AS_OLD_ARITH)
|
||||||
// m_context.register_plugin(alloc(smt::theory_mi_arith, m_context));
|
m_context.register_plugin(alloc(smt::theory_mi_arith, m_context));
|
||||||
// else
|
else
|
||||||
m_context.register_plugin(alloc(smt::theory_lra, m_context));
|
m_context.register_plugin(alloc(smt::theory_lra, m_context));
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup::setup_mi_arith() {
|
void setup::setup_mi_arith() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue