mirror of
https://github.com/Z3Prover/z3
synced 2025-05-15 11:44:44 +00:00
parent
1949a978ce
commit
efc02282f4
3 changed files with 56 additions and 2 deletions
|
@ -162,7 +162,7 @@ namespace smt {
|
|||
struct var_value_eq {
|
||||
theory_dense_diff_logic & m_th;
|
||||
var_value_eq(theory_dense_diff_logic & th):m_th(th) {}
|
||||
bool operator()(theory_var v1, theory_var v2) const { return m_th.m_assignment[v1] == m_th.m_assignment[v2] && m_th.is_int(v1) == m_th.is_int(v2); }
|
||||
bool operator()(theory_var v1, theory_var v2) const { return m_th.m_assignment[v1] == m_th.m_assignment[v2]; }
|
||||
};
|
||||
|
||||
typedef int_hashtable<var_value_hash, var_value_eq> var_value_table;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue