Skip to content

Commit

Permalink
choose N to get >= 10min of elapsed time
Browse files Browse the repository at this point in the history
  • Loading branch information
d-netto committed Apr 26, 2023
1 parent 9159a16 commit d6d3dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/slow/rb_tree/rb_tree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct PointByY
end
Base.isless(a::PointByY, b::PointByY) = isless(a.p.y, b.p.y)

function tvbench(; N = 10_000_000)
function tvbench(; N = 30_000_000)
t0 = time()
queue = Queue{Point}()
xtree = RBTree{PointByX}()
Expand Down

0 comments on commit d6d3dc0

Please sign in to comment.