Skip to content

Commit

Permalink
Update to calculation of number of beleifs
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-asmar committed Jun 22, 2024
1 parent caf769f commit f20cc0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ end
function log_verbose_info(t0::Float64, iter::Int, tree::SARSOPTree)
@printf(" %-10.2f %-10d %-12.7f %-12.7f %-15.10f %-10d %-10d\n",
time()-t0, iter, tree.V_lower[1], tree.V_upper[1], root_diff(tree),
length(tree.Γ), sum(.!tree.b_pruned))
length(tree.Γ), length(tree.b_pruned) - sum(tree.b_pruned))
end

function dashed_line(n=86)
Expand Down

0 comments on commit f20cc0e

Please sign in to comment.