lean4-htt/tests/bench/qsort/lakefile.toml
Kim Morrison 3ee2842e77
feat: remove runtime bounds checks and partial from qsort (#6241)
This PR refactors `Array.qsort` to remove runtime array bounds checks,
and avoids the use of `partial`. We use the `Vector` API, along with
auto_params, to avoid having to write any proofs. The new code
benchmarks indistinguishably from the old.
2024-12-01 06:26:00 +00:00

7 lines
103 B
TOML

name = "qsort"
version = "0.1.0"
defaultTargets = ["qsort"]
[[lean_exe]]
name = "qsort"
root = "Main"