3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 04:03:39 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-07 14:25:07 -08:00
parent 04906bd957
commit 60d5a004ce

View file

@ -263,8 +263,8 @@ struct reduce_args_tactic::imp {
TRACE("reduce_args", tout << "decl2args:" << std::endl; TRACE("reduce_args", tout << "decl2args:" << std::endl;
for (auto const& [k, v] : decl2args) { for (auto const& [k, v] : decl2args) {
tout << k->get_name() << ": "; tout << k->get_name() << ": ";
for (auto b : v) for (unsigned i = 0; i < v.size(); ++i)
tout << (b ? "1" : "0"); tout << (v.get(i) ? "1" : "0");
tout << std::endl; tout << std::endl;
}); });
} }