Skip to content

Commit

Permalink
[skip ci] reporting runtime fraction in summary statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
dfridovi committed Jan 2, 2025
1 parent 9c1be45 commit 36d9f4f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion benchmark/path.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ function summary_statistics(data)
(; success_rate = fraction_solved(solver_data), runtime_stats(solver_data)...)
end

(; ip = accumulate_stats(data.ip_data), path = accumulate_stats(data.path_data))
stats = (; ip = accumulate_stats(data.ip_data), path = accumulate_stats(data.path_data))
@info "IP runtime is $(100(stats.ip.μ / stats.path.μ)) % that of PATH."

stats
end

"Estimate mean and standard deviation of runtimes for all problems."
Expand Down

0 comments on commit 36d9f4f

Please sign in to comment.