mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 22:35:45 +00:00
refactor get_sort
This commit is contained in:
parent
4455f6caf8
commit
3ae4c6e9de
129 changed files with 362 additions and 362 deletions
|
@ -2311,7 +2311,7 @@ public:
|
|||
bool has_fact(proof const * p) const {
|
||||
SASSERT(is_proof(p));
|
||||
unsigned n = p->get_num_args();
|
||||
return n > 0 && get_sort(p->get_arg(n - 1)) != m_proof_sort;
|
||||
return n > 0 && p->get_arg(n - 1)->get_sort() != m_proof_sort;
|
||||
}
|
||||
expr * get_fact(proof const * p) const { SASSERT(is_proof(p)); SASSERT(has_fact(p)); return p->get_arg(p->get_num_args() - 1); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue