[benchmark] CheckResults → check

Capitalizing function names is against Swift naming conventions.
This commit is contained in:
Karoy Lorentey
2021-09-15 18:45:21 -07:00
parent a723e6d4c2
commit 203dc55b60
104 changed files with 386 additions and 373 deletions

View File

@@ -41,6 +41,6 @@ public func run_ArraySubscript(_ N: Int) {
arrays[i][bound(i)] =
max(arrays[i-1][bound(i-1)], arrays[i][bound(i)])
}
CheckResults(arrays[0][0] <= arrays[numArrays-1][bound(numArrays-1)])
check(arrays[0][0] <= arrays[numArrays-1][bound(numArrays-1)])
}
}