mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
91ef84b8c9
6 changed files with 49 additions and 71 deletions
|
@ -2297,14 +2297,14 @@ public:
|
|||
vars.resize(j);
|
||||
}
|
||||
else {
|
||||
fml = tmp;
|
||||
fml = std::move(tmp);
|
||||
}
|
||||
}
|
||||
|
||||
void operator()(expr_ref& fml, proof_ref& pr) {
|
||||
expr_ref tmp(m);
|
||||
m_elim_star(fml, tmp, pr);
|
||||
fml = tmp;
|
||||
fml = std::move(tmp);
|
||||
}
|
||||
|
||||
void operator()(uint_set const& index_set, bool index_of_bound, expr_ref& fml) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue