mirror of
https://github.com/Z3Prover/z3
synced 2026-06-01 22:57:51 +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
|
|
@ -24,7 +24,7 @@ struct ground_sat_answer_op::frame {
|
|||
ast_manager &m = pt.get_ast_manager();
|
||||
spacer::manager &pm = pt.get_manager();
|
||||
|
||||
m_fact = m.mk_app(head(), m_gnd_subst.size(), m_gnd_subst.c_ptr());
|
||||
m_fact = m.mk_app(head(), m_gnd_subst.size(), m_gnd_subst.data());
|
||||
|
||||
// compute ground equalities implied by the fact
|
||||
SASSERT(m_gnd_subst.size() == pt.head()->get_arity());
|
||||
|
|
@ -193,7 +193,7 @@ proof *ground_sat_answer_op::mk_proof_step(frame &fr) {
|
|||
substs.push_back(expr_ref_vector(m));
|
||||
}
|
||||
m_pinned.push_back(m.mk_hyper_resolve(premises.size(),
|
||||
premises.c_ptr(),
|
||||
premises.data(),
|
||||
fr.fact(),
|
||||
positions, substs));
|
||||
TRACE("spacer_sat", tout << "pf step:\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue