Add name suggestions to types

This commit is contained in:
Kiana Sheibani 2022-09-16 12:39:47 -04:00
parent 7c925aed9b
commit 8839dd049a
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
5 changed files with 10 additions and 3 deletions

View file

@ -15,6 +15,8 @@ public export
Matrix : Nat -> Nat -> Type -> Type
Matrix m n = Array [m,n]
%name Matrix mat
||| A synonym for a square matrix with dimensions of length `n`.
public export
Matrix' : Nat -> Type -> Type
@ -477,7 +479,7 @@ decompLUP {m,n} mat with (viewShape mat)
--------------------------------------------------------------------------------
-- Matrix properties
-- Determinant
--------------------------------------------------------------------------------