mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
04906bd957
commit
60d5a004ce
|
@ -263,8 +263,8 @@ struct reduce_args_tactic::imp {
|
|||
TRACE("reduce_args", tout << "decl2args:" << std::endl;
|
||||
for (auto const& [k, v] : decl2args) {
|
||||
tout << k->get_name() << ": ";
|
||||
for (auto b : v)
|
||||
tout << (b ? "1" : "0");
|
||||
for (unsigned i = 0; i < v.size(); ++i)
|
||||
tout << (v.get(i) ? "1" : "0");
|
||||
tout << std::endl;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue