3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-07 15:55:46 +00:00
disable remove_unused_defs from pb-solver until it is integrated with model reconstruction.
This commit is contained in:
Nikolaj Bjorner 2023-04-12 19:50:01 -07:00
parent e8222433c3
commit eba0732629
3 changed files with 16 additions and 10 deletions

View file

@ -1240,7 +1240,7 @@ bool cmd_context::try_mk_pdecl_app(symbol const & s, unsigned num_args, expr * c
if (!dt.is_datatype(args[0]->get_sort()))
return false;
for (auto* a : dt.plugin().get_accessors(s)) {
for (auto* a : dt.plugin().get_accessors(s)) {
fn = a->instantiate(args[0]->get_sort());
r = m().mk_app(fn, num_args, args);
return true;