mirror of
https://github.com/Z3Prover/z3
synced 2025-11-05 22:06:03 +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
|
|
@ -52,7 +52,7 @@ void tst_substitution()
|
|||
sorts.push_back(m.mk_bool_sort());
|
||||
names.push_back(symbol("dude"));
|
||||
body = m.mk_and(m.mk_eq(v1,v2), m.mk_eq(v3,v4));
|
||||
q = m.mk_forall(sorts.size(), sorts.c_ptr(), names.c_ptr(), body);
|
||||
q = m.mk_forall(sorts.size(), sorts.data(), names.data(), body);
|
||||
subst.apply(q, res);
|
||||
TRACE("substitution", tout << mk_pp(q, m) << "\n->\n" << mk_pp(res, m) << "\n";);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue