summaryrefslogtreecommitdiff
path: root/backends/lean/Base/Primitives.lean
diff options
context:
space:
mode:
authorSon Ho2023-07-17 12:14:03 +0200
committerSon Ho2023-07-17 12:14:03 +0200
commitd45c6ed9e8049b81170c3e6950043d08006ba9f2 (patch)
treeeb15b4cc1d1d175bf7737d1e12442a4df01e0bc1 /backends/lean/Base/Primitives.lean
parent4f7ebc2358d78d31d63a609a32e5a732b82d468e (diff)
Move a definition
Diffstat (limited to '')
-rw-r--r--backends/lean/Base/Primitives.lean3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/lean/Base/Primitives.lean b/backends/lean/Base/Primitives.lean
index 0506f4c0..1a0c665d 100644
--- a/backends/lean/Base/Primitives.lean
+++ b/backends/lean/Base/Primitives.lean
@@ -616,6 +616,9 @@ def Scalar.toInt {ty} (n : Scalar ty) : Int := n.val
def Vec (α : Type u) := { l : List α // List.length l ≤ Usize.max }
+-- TODO: do we really need it? It should be with Subtype by default
+instance Vec.cast (a : Type): Coe (Vec a) (List a) where coe := λ v => v.val
+
def Vec.new (α : Type u): Vec α := ⟨ [], by apply Scalar.cMax_suffices .Usize; simp ⟩
def Vec.len (α : Type u) (v : Vec α) : Usize :=