3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 03:31:23 +00:00

refactor get_sort

This commit is contained in:
Nikolaj Bjorner 2021-02-02 04:45:54 -08:00
parent 4455f6caf8
commit 3ae4c6e9de
129 changed files with 362 additions and 362 deletions

View file

@ -51,7 +51,7 @@ class fix_dl_var_tactic : public tactic {
}
bool is_arith(expr * n) {
sort * s = m.get_sort(n);
sort * s = n->get_sort();
return s->get_family_id() == m_util.get_family_id();
}