3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 10:50:24 +00:00

mk-var during copy

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-31 20:34:41 -07:00
parent ed7d969366
commit fa9cf0fa0c
2 changed files with 23 additions and 6 deletions

View file

@ -817,9 +817,9 @@ void goal2sat::operator()(goal const & g, params_ref const & p, sat::solver_core
}
void goal2sat::get_interpreted_funs(func_decl_ref_vector& atoms) {
void goal2sat::get_interpreted_funs(func_decl_ref_vector& funs) {
if (m_imp) {
atoms.append(m_imp->interpreted_funs());
funs.append(m_imp->interpreted_funs());
}
}