mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
Optimizing qe_lite
This commit is contained in:
parent
bfeb15b876
commit
aa77a918cd
4 changed files with 42 additions and 20 deletions
|
@ -639,6 +639,17 @@ void rewriter_tpl<Config>::set_inv_bindings(unsigned num_bindings, expr * const
|
|||
TRACE("rewriter", display_bindings(tout););
|
||||
}
|
||||
|
||||
template<typename Config>
|
||||
void rewriter_tpl<Config>::update_inv_binding_at(unsigned i, expr* binding) {
|
||||
m_bindings[i] = binding;
|
||||
}
|
||||
|
||||
template<typename Config>
|
||||
void rewriter_tpl<Config>::update_binding_at(unsigned i, expr* binding) {
|
||||
m_bindings[m_bindings.size() - i - 1] = binding;
|
||||
}
|
||||
|
||||
|
||||
template<typename Config>
|
||||
template<bool ProofGen>
|
||||
void rewriter_tpl<Config>::main_loop(expr * t, expr_ref & result, proof_ref & result_pr) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue