diff options
| author | Andreas Grois <andi@grois.info> | 2024-07-23 22:19:57 +0200 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2024-07-23 22:19:57 +0200 |
| commit | c8371da0cbc68f6a2455da7c64c3d3346b7f4d45 (patch) | |
| tree | 228087a00aafb9a988a737129aa360c85147355e /BinaryHeap.lean | |
| parent | a4734cad1ef5f69cf9505c923eb2990c5403616c (diff) | |
Split code in multiple source files. Separate proofs and logic.
Diffstat (limited to 'BinaryHeap.lean')
| -rw-r--r-- | BinaryHeap.lean | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BinaryHeap.lean b/BinaryHeap.lean index cd0e63f..9d1da1b 100644 --- a/BinaryHeap.lean +++ b/BinaryHeap.lean @@ -1,3 +1,6 @@ +/- + This file contains the Binary Heap type and its basic operations. +-/ import BinaryHeap.CompleteTree structure BinaryHeap (α : Type u) (le : α → α → Bool) (n : Nat) where |
