mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 15:55:46 +00:00
array solver fixes
This commit is contained in:
parent
78f4513441
commit
9a975a4523
10 changed files with 227 additions and 98 deletions
|
@ -182,30 +182,31 @@ public:
|
|||
|
||||
bool is_as_array_tree(expr * n);
|
||||
|
||||
app * mk_store(unsigned num_args, expr * const * args) {
|
||||
app * mk_store(unsigned num_args, expr * const * args) const {
|
||||
return m_manager.mk_app(m_fid, OP_STORE, 0, nullptr, num_args, args);
|
||||
}
|
||||
|
||||
app * mk_store(expr_ref_vector const& args) {
|
||||
return mk_store(args.size(), args.c_ptr());
|
||||
}
|
||||
app * mk_store(ptr_vector<expr> const& args) {
|
||||
app * mk_store(expr_ref_vector const& args) const {
|
||||
return mk_store(args.size(), args.c_ptr());
|
||||
}
|
||||
|
||||
app * mk_select(unsigned num_args, expr * const * args) {
|
||||
app * mk_store(ptr_vector<expr> const& args) const {
|
||||
return mk_store(args.size(), args.c_ptr());
|
||||
}
|
||||
|
||||
app * mk_select(unsigned num_args, expr * const * args) const {
|
||||
return m_manager.mk_app(m_fid, OP_SELECT, 0, nullptr, num_args, args);
|
||||
}
|
||||
|
||||
app * mk_select(ptr_vector<expr> const& args) {
|
||||
app * mk_select(ptr_vector<expr> const& args) const {
|
||||
return mk_select(args.size(), args.c_ptr());
|
||||
}
|
||||
|
||||
app * mk_select(ptr_buffer<expr> const& args) {
|
||||
app * mk_select(ptr_buffer<expr> const& args) const {
|
||||
return mk_select(args.size(), args.c_ptr());
|
||||
}
|
||||
|
||||
app * mk_select(expr_ref_vector const& args) {
|
||||
app * mk_select(expr_ref_vector const& args) const {
|
||||
return mk_select(args.size(), args.c_ptr());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue