lean4-htt/tests/lean/heapSort.lean.expected.out
Leonardo de Moura 10d43492ba chore: fix test
2022-04-29 07:17:46 -07:00

11 lines
637 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

heapSort.lean:32:28-32:33: warning: declaration uses 'sorry'
heapSort.lean:51:22-51:27: warning: declaration uses 'sorry'
heapSort.lean:61:30-61:35: warning: declaration uses 'sorry'
heapSort.lean:110:29-110:34: warning: declaration uses 'sorry'
@Array.heapSort.loop._eq_1 : ∀ {α : Type u_1} (lt : αα → Bool) (a : BinaryHeap α fun y x => lt x y) (out : Array α),
Array.heapSort.loop lt a out =
match e : BinaryHeap.max a with
| none => out
| some x =>
let_fun this := (_ : BinaryHeap.size (BinaryHeap.popMax a) < BinaryHeap.size a);
Array.heapSort.loop lt (BinaryHeap.popMax a) (Array.push out x)