mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
remove also cores as arguments to tactics
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4bbece6616
commit
2f218b0bdc
90 changed files with 326 additions and 565 deletions
|
@ -107,6 +107,7 @@ void goal::copy_to(goal & target) const {
|
|||
target.m_precision = mk_union(prec(), target.prec());
|
||||
target.m_mc = m_mc.get();
|
||||
target.m_pc = m_pc.get();
|
||||
target.m_dc = m_dc.get();
|
||||
}
|
||||
|
||||
void goal::push_back(expr * f, proof * pr, expr_dependency * d) {
|
||||
|
@ -655,6 +656,7 @@ goal * goal::translate(ast_translation & translator) const {
|
|||
res->m_precision = m_precision;
|
||||
res->m_pc = m_pc ? m_pc->translate(translator) : nullptr;
|
||||
res->m_mc = m_mc ? m_mc->translate(translator) : nullptr;
|
||||
res->m_dc = m_dc ? m_dc->translate(translator) : nullptr;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue