mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 23:05:26 +00:00
call it data instead of c_ptr for approaching C++11 std::vector convention.
This commit is contained in:
parent
524dcd35f9
commit
4a6083836a
456 changed files with 2802 additions and 2802 deletions
|
@ -323,8 +323,8 @@ br_status bv_bounds::rewrite(unsigned limit, func_decl * f, unsigned num, expr *
|
|||
switch (nargs.size()) {
|
||||
case 0: result = negated ? m_m.mk_false() : m_m.mk_true(); return BR_DONE;
|
||||
case 1: result = nargs.get(0); return BR_DONE;
|
||||
default: result = negated ? m_m.mk_or(nargs.size(), nargs.c_ptr())
|
||||
: m_m.mk_and(nargs.size(), nargs.c_ptr());
|
||||
default: result = negated ? m_m.mk_or(nargs.size(), nargs.data())
|
||||
: m_m.mk_and(nargs.size(), nargs.data());
|
||||
return BR_DONE;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue