Skip to content

Commit

Permalink
Only produce stast when narrow_sides_eliminate_dead is on
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Mar 8, 2025
1 parent ac16004 commit 317c521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/td3.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1342,7 +1342,7 @@ module Base =

print_data_verbose data "Data after postsolve";

if narrow_sides_stats then (
if narrow_sides_stats && narrow_sides_eliminate_dead then (
let omitted_to_dead_count = HM.fold (fun g ls acc -> if HM.mem rho g then acc else acc + VS.cardinal ls) omitted_contributions 0 in
let omitted_from_dead_count = HM.fold (fun g ls acc -> VS.fold (fun l acc -> if HM.mem rho l then acc else acc + 1) ls acc) omitted_contributions 0 in
Logs.info "Omitted contributions: %d still bot of %d omitted of %d; %d to dead; %d from dead" truly_omitted_contributions_count omitted_contributions_count all_contributions_count omitted_from_dead_count omitted_to_dead_count;
Expand Down

0 comments on commit 317c521

Please sign in to comment.