mirror of
https://github.com/Z3Prover/z3
synced 2025-11-13 09:31:14 +00:00
add array selects to basic ackerman reduction improves performance significantly for #2525 as it now uses the SAT solver core instead of SMT core
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7823117776
commit
000e485794
25 changed files with 706 additions and 572 deletions
|
|
@ -170,7 +170,7 @@ void peq::mk_eq (app_ref_vector& aux_consts, app_ref& result, bool stores_on_rhs
|
|||
store_args.push_back (rhs);
|
||||
store_args.push_back (*it);
|
||||
store_args.push_back (val);
|
||||
rhs = m_arr_u.mk_store (store_args.size (), store_args.c_ptr ());
|
||||
rhs = m_arr_u.mk_store (store_args);
|
||||
aux_consts.push_back (val);
|
||||
}
|
||||
m_eq = m.mk_eq (lhs, rhs);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue