Ok I think this should be right

This commit is contained in:
David Smith
2023-05-12 16:29:23 -07:00
parent a63031c636
commit 92bba63159

View File

@@ -86,7 +86,7 @@ public func runAppendLargeContiguous(N: Int) {
public func runAppendSmallContiguousRepeatedly(N: Int) {
for _ in 1...N {
var rrc = NaiveRRC()
for _ in 1...1_000_000 {
for _ in 1...100_000 {
rrc.append(contentsOf: contiguous)
}
blackHole(rrc)