Skip to content

Commit

Permalink
na
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Dec 7, 2021
1 parent 04906bd commit 60d5a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tactic/core/reduce_args_tactic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
}
Expand Down

0 comments on commit 60d5a00

Please sign in to comment.