Skip to content

Commit

Permalink
Only print COI traversal for verbosity >=4 (#363)
Browse files Browse the repository at this point in the history
Printing the traversal is *very* verbose, even relative to the other stuff printed at verbosity level 3.
  • Loading branch information
CyanoKobalamyne authored Jan 24, 2025
1 parent 4bbaec2 commit 4b49035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fcoi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void FunctionalConeOfInfluence::compute_coi(const TermVec & terms)
clear();

assert(coi_visited_terms_.empty());
if (verbosity_ >= 3) print_coi_info(terms);
if (verbosity_ >= 4) print_coi_info(terms);

UnorderedTermSet new_coi_state_vars;
UnorderedTermSet new_coi_input_vars;
Expand Down

0 comments on commit 4b49035

Please sign in to comment.