aboutsummaryrefslogtreecommitdiff
path: root/BinaryHeap.lean
diff options
context:
space:
mode:
Diffstat (limited to 'BinaryHeap.lean')
-rw-r--r--BinaryHeap.lean3
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