diff options
| author | Son Ho | 2024-06-13 10:47:26 +0200 | 
|---|---|---|
| committer | Son Ho | 2024-06-13 10:47:26 +0200 | 
| commit | b25d1e2da70a1ed417f55650d80736df22e912d5 (patch) | |
| tree | b6e5256b646d0973559664078d488ecd60ebad44 | |
| parent | b782e5f02b66ded139df40aad6fb564f20396076 (diff) | |
Fix a proof
Diffstat (limited to '')
| -rw-r--r-- | backends/lean/Base/Primitives/ArraySlice.lean | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/lean/Base/Primitives/ArraySlice.lean b/backends/lean/Base/Primitives/ArraySlice.lean index 157f9df1..17ee626f 100644 --- a/backends/lean/Base/Primitives/ArraySlice.lean +++ b/backends/lean/Base/Primitives/ArraySlice.lean @@ -126,7 +126,7 @@ abbrev Slice.v {α : Type u} (v : Slice α) : List α := v.val  example {a: Type u} (v : Slice a) : v.length ≤ Scalar.max ScalarTy.Usize := by    scalar_tac -def Slice.new (α : Type u): Slice α := ⟨ [], by apply Scalar.cMax_suffices .Usize; simp; decide ⟩ +def Slice.new (α : Type u): Slice α := ⟨ [], by apply Scalar.cMax_suffices .Usize; simp ⟩  -- TODO: very annoying that the α is an explicit parameter  def Slice.len (α : Type u) (v : Slice α) : Usize :=  | 
