mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 19:47:52 +00:00
fix #5741
This commit is contained in:
parent
d88f125818
commit
42f206171d
2 changed files with 2 additions and 2 deletions
|
@ -119,7 +119,7 @@ public:
|
|||
|
||||
unsigned num_exprs() const;
|
||||
|
||||
expr * form(unsigned i) const { return m().get(m_forms, i); }
|
||||
expr * form(unsigned i) const { return inconsistent() ? m().mk_false() : m().get(m_forms, i); }
|
||||
proof * pr(unsigned i) const { return m().size(m_proofs) > i ? static_cast<proof*>(m().get(m_proofs, i)) : nullptr; }
|
||||
expr_dependency * dep(unsigned i) const { return unsat_core_enabled() ? m().get(m_dependencies, i) : nullptr; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue