From 67fd4cabceda047750c19e9bef98e0c25c6ed7dd Mon Sep 17 00:00:00 2001 From: Péter Diviánszky Date: Thu, 28 Apr 2016 22:43:51 +0200 Subject: switch to Haskell style syntax in pretty print --- testdata/Prelude.out | 2086 +++++++++++++++++++++++++------------------------- 1 file changed, 1043 insertions(+), 1043 deletions(-) (limited to 'testdata/Prelude.out') diff --git a/testdata/Prelude.out b/testdata/Prelude.out index d5d3852b..7299d40d 100644 --- a/testdata/Prelude.out +++ b/testdata/Prelude.out @@ -1,41 +1,41 @@ main is not found ------------ trace -const :: {a} -> {b} -> a -> b->a +const :: forall a b . a -> b -> a otherwise :: 'Bool -& :: {a} -> {b} -> a -> (a->b)->b -$ :: {a} -> {b} -> (a->b) -> a->b -. :: {a} -> {b} -> {c} -> (b->c) -> (a->b) -> a->c -uncurry :: {a} -> {b} -> {c} -> (a -> c->b) -> (a, c)->b -*** :: {a} -> {b} -> {c} -> {d} -> (a->c) -> (b->d) -> (a, b)->(c, d) +& :: forall a b . a -> (a -> b) -> b +$ :: forall a b . (a -> b) -> a -> b +. :: forall a b c . (b -> c) -> (a -> b) -> a -> c +uncurry :: forall a b c . (a -> c -> b) -> (a, c) -> b +*** :: forall a b c d . (a -> c) -> (b -> d) -> (a, b) -> (c, d) pi :: 'Float -zip :: {a} -> {b} -> 'List a -> 'List b -> 'List (a, b) -unzip :: {a} -> {b} -> 'List (a, b) -> ('List a, 'List b) -filter :: {a} -> (a->'Bool) -> 'List a -> 'List a -tail :: {a} -> 'List a -> 'List a -pairs :: {a} -> 'List a -> 'List (a, a) -foldl' :: {a} -> {b} -> (a -> b->a) -> a -> 'List b -> a -foldr1 :: {a} -> (a -> a->a) -> 'List a -> a -split :: {a} -> 'List a -> ('List a, 'List a) -mergeBy :: {a} -> (a -> a->'Ordering) -> 'List a -> 'List a -> 'List a -sortBy :: {a} -> (a -> a->'Ordering) -> 'List a -> 'List a -iterate :: {a} -> (a->a) -> a -> 'List a -fst :: {a} -> {b} -> (a, b)->a -snd :: {a} -> {b} -> (a, b)->b -||| :: 'Bool -> 'Bool->'Bool -&&& :: 'Bool -> 'Bool->'Bool +zip :: forall a b . 'List a -> 'List b -> 'List (a, b) +unzip :: forall a b . 'List (a, b) -> ('List a, 'List b) +filter :: forall a . (a -> 'Bool) -> 'List a -> 'List a +tail :: forall a . 'List a -> 'List a +pairs :: forall a . 'List a -> 'List (a, a) +foldl' :: forall a b . (a -> b -> a) -> a -> 'List b -> a +foldr1 :: forall a . (a -> a -> a) -> 'List a -> a +split :: forall a . 'List a -> ('List a, 'List a) +mergeBy :: forall a . (a -> a -> 'Ordering) -> 'List a -> 'List a -> 'List a +sortBy :: forall a . (a -> a -> 'Ordering) -> 'List a -> 'List a +iterate :: forall a . (a -> a) -> a -> 'List a +fst :: forall a b . (a, b) -> a +snd :: forall a b . (a, b) -> b +||| :: 'Bool -> 'Bool -> 'Bool +&&& :: 'Bool -> 'Bool -> 'Bool 'RecItem :: Type -RecItem :: 'String -> Type->'RecItem -'RecItemCase :: (a : 'RecItem->Type) -> ((b:'String) -> (c:Type) -> a (RecItem b c)) -> (d:'RecItem) -> a d -match'RecItem :: (a : Type->Type) -> a 'RecItem -> (b:Type) -> a b -> a b -recItemType :: 'RecItem->Type +RecItem :: 'String -> Type -> 'RecItem +'RecItemCase :: (a :: 'RecItem -> Type) -> ((b :: 'String) -> (c :: Type) -> a (RecItem b c)) -> (d :: 'RecItem) -> a d +match'RecItem :: (a :: Type -> Type) -> a 'RecItem -> (b :: Type) -> a b -> a b +recItemType :: 'RecItem -> Type 'RecordC :: 'List 'RecItem -> Type -RecordCons :: {a : 'List 'RecItem} -> 'HList (map 'RecItem Type recItemType a) -> 'RecordC a -'RecordCCase :: {a : 'List 'RecItem} -> (b : 'RecordC a -> Type) -> ((c : 'HList (map 'RecItem Type recItemType a)) -> b (RecordCons c)) -> (d : 'RecordC a) -> b d -match'RecordC :: (a : Type->Type) -> ((b : 'List 'RecItem) -> a ('RecordC b)) -> (c:Type) -> a c -> a c +RecordCons :: forall (a :: 'List 'RecItem) . 'HList (map 'RecItem Type recItemType a) -> 'RecordC a +'RecordCCase :: forall (a :: 'List 'RecItem) . (b :: 'RecordC a -> Type) -> ((c :: 'HList (map 'RecItem Type recItemType a)) -> b (RecordCons c)) -> (d :: 'RecordC a) -> b d +match'RecordC :: (a :: Type -> Type) -> ((b :: 'List 'RecItem) -> a ('RecordC b)) -> (c :: Type) -> a c -> a c isKeyC :: 'String -> Type -> 'List 'RecItem -> Type -fstTup :: {a} -> {b : 'List Type} -> 'HList (Cons a b) -> a -sndTup :: {a} -> {b : 'List Type} -> 'HList (Cons a b) -> 'HList b -project :: {a} -> {b : 'List 'RecItem} -> (c:'String) -> {_ : isKeyC c a b} -> 'RecordC b -> a +fstTup :: forall a (b :: 'List Type) . 'HList (Cons a b) -> a +sndTup :: forall a (b :: 'List Type) . 'HList (Cons a b) -> 'HList b +project :: forall a (b :: 'List 'RecItem) . (c :: 'String) -> isKeyC c a b => 'RecordC b -> a rgb :: 'Float -> 'Float -> 'Float -> 'VecS 'Float 4 black :: 'VecS 'Float 4 gray :: 'VecS 'Float 4 @@ -53,114 +53,114 @@ navy :: 'VecS 'Float 4 blue :: 'VecS 'Float 4 purple :: 'VecS 'Float 4 fuchsia :: 'VecS 'Float 4 -colorImage1 :: {a:'Nat} -> {b} -> {c} -> {_ : 'Num b} -> {_ : c ~ 'VecScalar a b} -> c -> 'Image 1 (Color c) -colorImage2 :: {a:'Nat} -> {b} -> {c} -> {_ : 'Num b} -> {_ : c ~ 'VecScalar a b} -> c -> 'Image 2 (Color c) +colorImage1 :: forall (a :: 'Nat) b c . ('Num b, c ~ 'VecScalar a b) => c -> 'Image 1 (Color c) +colorImage2 :: forall (a :: 'Nat) b c . ('Num b, c ~ 'VecScalar a b) => c -> 'Image 2 (Color c) depthImage1 :: 'Float -> 'Image 1 Depth v3FToV4F :: 'Vec 3 'Float -> 'VecS 'Float 4 -radians :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -degrees :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -sin :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -cos :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -tan :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -sinh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -cosh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -tanh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -asin :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -asinh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -acos :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -acosh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -atan :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -atanh :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -atan2 :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a->a -pow :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a->a -exp :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -log :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -exp2 :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -log2 :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -sqrt :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -inversesqrt :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -abs :: {a} -> {b} -> {c:'Nat} -> {_ : 'Signed a} -> {_ : b ~ 'VecScalar c a} -> b->b -sign :: {a} -> {b} -> {c:'Nat} -> {_ : 'Signed a} -> {_ : b ~ 'VecScalar c a} -> b->b -floor :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -trunc :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -round :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -roundEven :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -ceil :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -fract :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -mod :: {a} -> {b} -> {c:'Nat} -> {_ : 'Num a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -min :: {a} -> {b} -> {c:'Nat} -> {_ : 'Num a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -max :: {a} -> {b} -> {c:'Nat} -> {_ : 'Num a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -modF :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->(a, a) -clamp :: {a} -> {b} -> {c:'Nat} -> {_ : 'Num a} -> {_ : b ~ 'VecScalar c a} -> b -> b -> b->b -clampS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Num a} -> {_ : b ~ 'VecScalar c a} -> b -> a -> a->b -mix :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a -> a->a -mixS :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a -> 'Float->a -mixB :: {a} -> {b:'Nat} -> {c} -> {_ : a ~ 'VecScalar b 'Float} -> {_ : c ~ 'VecScalar b 'Bool} -> a -> a -> c->a -step :: {a} -> {b:'Nat} -> {_ : a ~ 'VecS 'Float b} -> a -> a->a -stepS :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> 'Float -> a->a -smoothstep :: {a} -> {b:'Nat} -> {_ : a ~ 'VecS 'Float b} -> a -> a -> a->a -smoothstepS :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> 'Float -> 'Float -> a->a -isNan :: {a} -> {b:'Nat} -> {c} -> {_ : a ~ 'VecScalar b 'Float} -> {_ : c ~ 'VecScalar b 'Bool} -> a->c -isInf :: {a} -> {b:'Nat} -> {c} -> {_ : a ~ 'VecScalar b 'Float} -> {_ : c ~ 'VecScalar b 'Bool} -> a->c -dFdx :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -dFdy :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -fWidth :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -noise1 :: {a:'Nat} -> 'VecScalar a 'Float -> 'Float -noise2 :: {a:'Nat} -> 'VecScalar a 'Float -> 'Vec 2 'Float -noise3 :: {a:'Nat} -> 'VecScalar a 'Float -> 'Vec 3 'Float -noise4 :: {a:'Nat} -> 'VecScalar a 'Float -> 'Vec 4 'Float -length :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->'Float -distance :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a->'Float -dot :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a->'Float -cross :: {a} -> {_ : a ~ 'VecS 'Float 3} -> a -> a->a -normalize :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a->a -faceforward :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a -> a->a -reflect :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a->a -refract :: {a} -> {b:'Nat} -> {_ : a ~ 'VecScalar b 'Float} -> a -> a -> a->a -transpose :: {a:'Nat} -> {b:'Nat} -> {c} -> 'Mat a b c -> 'Mat b a c -det :: {a:'Nat} -> {b} -> 'Mat a a b -> 'Float -inv :: {a:'Nat} -> {b} -> 'Mat a a b -> 'Mat a a b -outer :: {a:'Nat} -> {b} -> {c:'Nat} -> 'Vec a b -> 'Vec c b -> 'Mat c a b -bAnd :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -bOr :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -bXor :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> b->b -bNot :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b->b -bAndS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> a->b -bOrS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> a->b -bXorS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> a->b -shiftL :: {a} -> {b} -> {c:'Nat} -> {d} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> {_ : d ~ 'VecScalar c 'Word} -> b -> d->b -shiftR :: {a} -> {b} -> {c:'Nat} -> {d} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> {_ : d ~ 'VecScalar c 'Word} -> b -> d->b -shiftLS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> 'Word->b -shiftRS :: {a} -> {b} -> {c:'Nat} -> {_ : 'Integral a} -> {_ : b ~ 'VecScalar c a} -> b -> 'Word->b -floatBitsToInt :: {a:'Nat} -> 'VecScalar a 'Float -> 'VecScalar a 'Int -floatBitsToWord :: {a:'Nat} -> 'VecScalar a 'Float -> 'VecScalar a 'Word -intBitsToFloat :: {a:'Nat} -> 'VecScalar a 'Int -> 'VecScalar a 'Float -wordBitsToFloat :: {a:'Nat} -> 'VecScalar a 'Word -> 'VecScalar a 'Float -+ :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> a->a -- :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> a->a -* :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> a->a -/ :: {a} -> {b:'Nat} -> {_ : 'Num a} -> 'VecScalar b a -> 'VecScalar b a -> 'VecScalar b a -% :: {a} -> {b:'Nat} -> {_ : 'Num a} -> 'VecScalar b a -> 'VecScalar b a -> 'VecScalar b a -neg :: {a} -> {_ : 'Signed ('MatVecScalarElem a)} -> a->a -/= :: {a} -> a -> a->'Bool -< :: {a:'Nat} -> {b} -> {_ : 'Num b} -> 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool -<= :: {a:'Nat} -> {b} -> {_ : 'Num b} -> 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool ->= :: {a:'Nat} -> {b} -> {_ : 'Num b} -> 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool -> :: {a:'Nat} -> {b} -> {_ : 'Num b} -> 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool -&& :: 'Bool -> 'Bool->'Bool -|| :: 'Bool -> 'Bool->'Bool -xor :: 'Bool -> 'Bool->'Bool -not :: {a:'Nat} -> 'VecScalar a 'Bool -> 'VecScalar a 'Bool -any :: {a:'Nat} -> 'VecScalar a 'Bool -> 'Bool -all :: {a:'Nat} -> 'VecScalar a 'Bool -> 'Bool -.*. :: {a:'Nat} -> {b:'Nat} -> {c} -> {d:'Nat} -> 'Mat a b c -> 'Mat b d c -> 'Mat a d c -*. :: {a:'Nat} -> {b:'Nat} -> {c} -> 'Mat a b c -> 'VecS c b -> 'Vec a c -.* :: {a:'Nat} -> {b} -> {c:'Nat} -> 'VecS b a -> 'Mat a c b -> 'Vec c b -+! :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> 'MatVecScalarElem a -> a --! :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> 'MatVecScalarElem a -> a -*! :: {a} -> {_ : 'Num ('MatVecScalarElem a)} -> a -> 'MatVecScalarElem a -> a -/! :: {a} -> {b:'Nat} -> {_ : 'Num a} -> 'VecScalar b a -> a -> 'VecScalar b a -%! :: {a} -> {b:'Nat} -> {_ : 'Num a} -> 'VecScalar b a -> a -> 'VecScalar b a +radians :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +degrees :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +sin :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +cos :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +tan :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +sinh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +cosh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +tanh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +asin :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +asinh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +acos :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +acosh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +atan :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +atanh :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +atan2 :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a +pow :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a +exp :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +log :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +exp2 :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +log2 :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +sqrt :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +inversesqrt :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +abs :: forall a b (c :: 'Nat) . ('Signed a, b ~ 'VecScalar c a) => b -> b +sign :: forall a b (c :: 'Nat) . ('Signed a, b ~ 'VecScalar c a) => b -> b +floor :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +trunc :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +round :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +roundEven :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +ceil :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +fract :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +mod :: forall a b (c :: 'Nat) . ('Num a, b ~ 'VecScalar c a) => b -> b -> b +min :: forall a b (c :: 'Nat) . ('Num a, b ~ 'VecScalar c a) => b -> b -> b +max :: forall a b (c :: 'Nat) . ('Num a, b ~ 'VecScalar c a) => b -> b -> b +modF :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> (a, a) +clamp :: forall a b (c :: 'Nat) . ('Num a, b ~ 'VecScalar c a) => b -> b -> b -> b +clampS :: forall a b (c :: 'Nat) . ('Num a, b ~ 'VecScalar c a) => b -> a -> a -> b +mix :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a -> a +mixS :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> 'Float -> a +mixB :: forall a (b :: 'Nat) c . (a ~ 'VecScalar b 'Float, c ~ 'VecScalar b 'Bool) => a -> a -> c -> a +step :: forall a (b :: 'Nat) . (a ~ 'VecS 'Float b) => a -> a -> a +stepS :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => 'Float -> a -> a +smoothstep :: forall a (b :: 'Nat) . (a ~ 'VecS 'Float b) => a -> a -> a -> a +smoothstepS :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => 'Float -> 'Float -> a -> a +isNan :: forall a (b :: 'Nat) c . (a ~ 'VecScalar b 'Float, c ~ 'VecScalar b 'Bool) => a -> c +isInf :: forall a (b :: 'Nat) c . (a ~ 'VecScalar b 'Float, c ~ 'VecScalar b 'Bool) => a -> c +dFdx :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +dFdy :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +fWidth :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +noise1 :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'Float +noise2 :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'Vec 2 'Float +noise3 :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'Vec 3 'Float +noise4 :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'Vec 4 'Float +length :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> 'Float +distance :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> 'Float +dot :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> 'Float +cross :: forall a . (a ~ 'VecS 'Float 3) => a -> a -> a +normalize :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a +faceforward :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a -> a +reflect :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a +refract :: forall a (b :: 'Nat) . (a ~ 'VecScalar b 'Float) => a -> a -> a -> a +transpose :: forall (a :: 'Nat) (b :: 'Nat) c . 'Mat a b c -> 'Mat b a c +det :: forall (a :: 'Nat) b . 'Mat a a b -> 'Float +inv :: forall (a :: 'Nat) b . 'Mat a a b -> 'Mat a a b +outer :: forall (a :: 'Nat) b (c :: 'Nat) . 'Vec a b -> 'Vec c b -> 'Mat c a b +bAnd :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> b -> b +bOr :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> b -> b +bXor :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> b -> b +bNot :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> b +bAndS :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> a -> b +bOrS :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> a -> b +bXorS :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> a -> b +shiftL :: forall a b (c :: 'Nat) d . ('Integral a, b ~ 'VecScalar c a, d ~ 'VecScalar c 'Word) => b -> d -> b +shiftR :: forall a b (c :: 'Nat) d . ('Integral a, b ~ 'VecScalar c a, d ~ 'VecScalar c 'Word) => b -> d -> b +shiftLS :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> 'Word -> b +shiftRS :: forall a b (c :: 'Nat) . ('Integral a, b ~ 'VecScalar c a) => b -> 'Word -> b +floatBitsToInt :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'VecScalar a 'Int +floatBitsToWord :: forall (a :: 'Nat) . 'VecScalar a 'Float -> 'VecScalar a 'Word +intBitsToFloat :: forall (a :: 'Nat) . 'VecScalar a 'Int -> 'VecScalar a 'Float +wordBitsToFloat :: forall (a :: 'Nat) . 'VecScalar a 'Word -> 'VecScalar a 'Float ++ :: forall a . 'Num ('MatVecScalarElem a) => a -> a -> a +- :: forall a . 'Num ('MatVecScalarElem a) => a -> a -> a +* :: forall a . 'Num ('MatVecScalarElem a) => a -> a -> a +/ :: forall a (b :: 'Nat) . 'Num a => 'VecScalar b a -> 'VecScalar b a -> 'VecScalar b a +% :: forall a (b :: 'Nat) . 'Num a => 'VecScalar b a -> 'VecScalar b a -> 'VecScalar b a +neg :: forall a . 'Signed ('MatVecScalarElem a) => a -> a +/= :: forall a . a -> a -> 'Bool +< :: forall (a :: 'Nat) b . 'Num b => 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool +<= :: forall (a :: 'Nat) b . 'Num b => 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool +>= :: forall (a :: 'Nat) b . 'Num b => 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool +> :: forall (a :: 'Nat) b . 'Num b => 'VecScalar a b -> 'VecScalar a b -> 'VecScalar a 'Bool +&& :: 'Bool -> 'Bool -> 'Bool +|| :: 'Bool -> 'Bool -> 'Bool +xor :: 'Bool -> 'Bool -> 'Bool +not :: forall (a :: 'Nat) . 'VecScalar a 'Bool -> 'VecScalar a 'Bool +any :: forall (a :: 'Nat) . 'VecScalar a 'Bool -> 'Bool +all :: forall (a :: 'Nat) . 'VecScalar a 'Bool -> 'Bool +.*. :: forall (a :: 'Nat) (b :: 'Nat) c (d :: 'Nat) . 'Mat a b c -> 'Mat b d c -> 'Mat a d c +*. :: forall (a :: 'Nat) (b :: 'Nat) c . 'Mat a b c -> 'VecS c b -> 'Vec a c +.* :: forall (a :: 'Nat) b (c :: 'Nat) . 'VecS b a -> 'Mat a c b -> 'Vec c b ++! :: forall a . 'Num ('MatVecScalarElem a) => a -> 'MatVecScalarElem a -> a +-! :: forall a . 'Num ('MatVecScalarElem a) => a -> 'MatVecScalarElem a -> a +*! :: forall a . 'Num ('MatVecScalarElem a) => a -> 'MatVecScalarElem a -> a +/! :: forall a (b :: 'Nat) . 'Num a => 'VecScalar b a -> a -> 'VecScalar b a +%! :: forall a (b :: 'Nat) . 'Num a => 'VecScalar b a -> a -> 'VecScalar b a perspective :: 'Float -> 'Float -> 'Float -> 'Float -> 'Mat 4 4 'Float rotMatrixZ :: 'VecScalar 1 'Float -> 'Mat 4 4 'Float rotMatrixY :: 'VecScalar 1 'Float -> 'Mat 4 4 'Float @@ -170,278 +170,278 @@ translateBefore4 :: 'Vec 3 'Float -> 'M lookat :: 'Vec 3 'Float -> 'Vec 3 'Float -> 'Vec 3 'Float -> 'Mat 4 4 'Float scale :: 'Float -> 'VecS 'Float 4 -> 'VecS 'Float 4 fromTo :: 'Float -> 'Float -> 'List 'Float -!! :: {a} -> 'List a -> 'Int->a +!! :: forall a . 'List a -> 'Int -> a ------------ tooltips -testdata/Prelude.lc 16:1-16:6 {a} -> {b} -> a -> b->a -testdata/Prelude.lc 16:13-16:14 d_ +testdata/Prelude.lc 16:1-16:6 forall a b . a -> b -> a +testdata/Prelude.lc 16:13-16:14 _d testdata/Prelude.lc 18:1-18:10 Bool testdata/Prelude.lc 18:13-18:17 Bool -testdata/Prelude.lc 20:3-20:4 {a} -> {b} -> a -> (a->b)->b -testdata/Prelude.lc 20:9-20:10 b_ -testdata/Prelude.lc 20:11-20:12 g_ -testdata/Prelude.lc 22:2-22:3 {a} -> {b} -> (a->b) -> a->b -testdata/Prelude.lc 22:15-22:16 d_ -testdata/Prelude.lc 22:17-22:18 e_ -testdata/Prelude.lc 23:2-23:3 {a} -> {b} -> {c} -> (b->c) -> (a->b) -> a->c -testdata/Prelude.lc 23:17-23:18 f_ -testdata/Prelude.lc 23:20-23:21 g_ -testdata/Prelude.lc 23:22-23:23 h_ -testdata/Prelude.lc 25:1-25:8 {a} -> {b} -> {c} -> (a -> c->b) -> (a, c)->b -testdata/Prelude.lc 25:20-25:21 o_ -testdata/Prelude.lc 25:20-25:25 HList c_ -> b_ | c_ | c_ -> HList b_ -> a_ | d_ -testdata/Prelude.lc 25:22-25:23 n_ -testdata/Prelude.lc 25:24-25:25 j_ -testdata/Prelude.lc 27:2-27:5 {a} -> {b} -> {c} -> {d} -> (a->c) -> (b->d) -> (a, b)->(c, d) -testdata/Prelude.lc 27:20-27:30 (b_, a_) | HList c_ -> b_ | c_ -> HList b_ -> a_ -testdata/Prelude.lc 27:21-27:22 s_ -testdata/Prelude.lc 27:23-27:24 p_ -testdata/Prelude.lc 27:26-27:27 r_ -testdata/Prelude.lc 27:26-27:29 ((a_)) -testdata/Prelude.lc 27:28-27:29 l_ +testdata/Prelude.lc 20:3-20:4 forall a b . a -> (a -> b) -> b +testdata/Prelude.lc 20:9-20:10 _b +testdata/Prelude.lc 20:11-20:12 _g +testdata/Prelude.lc 22:2-22:3 forall a b . (a -> b) -> a -> b +testdata/Prelude.lc 22:15-22:16 _d +testdata/Prelude.lc 22:17-22:18 _e +testdata/Prelude.lc 23:2-23:3 forall a b c . (b -> c) -> (a -> b) -> a -> c +testdata/Prelude.lc 23:17-23:18 _f +testdata/Prelude.lc 23:20-23:21 _g +testdata/Prelude.lc 23:22-23:23 _h +testdata/Prelude.lc 25:1-25:8 forall a b c . (a -> c -> b) -> (a, c) -> b +testdata/Prelude.lc 25:20-25:21 _o +testdata/Prelude.lc 25:20-25:25 HList _c -> _b | _c | _c -> HList _b -> _a | _d +testdata/Prelude.lc 25:22-25:23 _n +testdata/Prelude.lc 25:24-25:25 _j +testdata/Prelude.lc 27:2-27:5 forall a b c d . (a -> c) -> (b -> d) -> (a, b) -> (c, d) +testdata/Prelude.lc 27:20-27:30 (_b, _a) | HList _c -> _b | _c -> HList _b -> _a +testdata/Prelude.lc 27:21-27:22 _s +testdata/Prelude.lc 27:23-27:24 _p +testdata/Prelude.lc 27:26-27:27 _r +testdata/Prelude.lc 27:26-27:29 ((_a)) +testdata/Prelude.lc 27:28-27:29 _l testdata/Prelude.lc 29:1-29:3 Float testdata/Prelude.lc 29:6-29:23 Float testdata/Prelude.lc 31:8-31:11 Type testdata/Prelude.lc 31:8-31:29 Type -testdata/Prelude.lc 31:8-34:39 a_->a_ | {a} -> {b} -> List a -> List b -> List (a, b) -testdata/Prelude.lc 31:9-31:10 d_ +testdata/Prelude.lc 31:8-34:39 _a -> _a | forall a b . List a -> List b -> List (a, b) +testdata/Prelude.lc 31:9-31:10 _d testdata/Prelude.lc 31:15-31:18 Type testdata/Prelude.lc 31:15-31:29 Type -testdata/Prelude.lc 31:16-31:17 c_ +testdata/Prelude.lc 31:16-31:17 _c testdata/Prelude.lc 31:22-31:29 Type testdata/Prelude.lc 31:23-31:28 Type testdata/Prelude.lc 31:24-31:25 Type testdata/Prelude.lc 31:24-31:27 List Type testdata/Prelude.lc 31:26-31:27 List Type | Type -testdata/Prelude.lc 32:1-32:4 {a} -> {b} -> List a -> List b -> List (a, b) -testdata/Prelude.lc 32:22-32:24 {a} -> List a -testdata/Prelude.lc 32:22-34:39 List (d_, c_) | List a_ -> List (a_, d_) | List b_ -> List (c_, b_) | List b_ -> List a_ -> List (b_, a_) -testdata/Prelude.lc 33:22-33:24 {a} -> List a -testdata/Prelude.lc 33:22-34:39 List (c_, f_) | List a_ -> List (e_, a_) | List c_ -> List b_ | b_ -> List b_ -> List a_ -testdata/Prelude.lc 34:23-34:28 (h_, d_) -testdata/Prelude.lc 34:23-34:29 List (h_, d_) -> List (h_, d_) -testdata/Prelude.lc 34:23-34:39 List (g_, c_) | List c_ -> List b_ | b_ -> List b_ -> List a_ -testdata/Prelude.lc 34:24-34:25 k_ -testdata/Prelude.lc 34:26-34:27 ((d_)) | g_ -testdata/Prelude.lc 34:28-34:29 {a} -> a -> List a -> List a -testdata/Prelude.lc 34:30-34:33 {a} -> {b} -> List a -> List b -> List (a, b) -testdata/Prelude.lc 34:30-34:36 List a_ -> List (h_, a_) -testdata/Prelude.lc 34:30-34:39 List (g_, c_) -testdata/Prelude.lc 34:34-34:36 List i_ -testdata/Prelude.lc 34:37-34:39 List c_ +testdata/Prelude.lc 32:1-32:4 forall a b . List a -> List b -> List (a, b) +testdata/Prelude.lc 32:22-32:24 forall a . List a +testdata/Prelude.lc 32:22-34:39 List (_d, _c) | List _a -> List (_a, _d) | List _b -> List (_c, _b) | List _b -> List _a -> List (_b, _a) +testdata/Prelude.lc 33:22-33:24 forall a . List a +testdata/Prelude.lc 33:22-34:39 List (_c, _f) | List _a -> List (_e, _a) | List _c -> List _b | _b -> List _b -> List _a +testdata/Prelude.lc 34:23-34:28 (_h, _d) +testdata/Prelude.lc 34:23-34:29 List (_h, _d) -> List (_h, _d) +testdata/Prelude.lc 34:23-34:39 List (_g, _c) | List _c -> List _b | _b -> List _b -> List _a +testdata/Prelude.lc 34:24-34:25 _k +testdata/Prelude.lc 34:26-34:27 ((_d)) | _g +testdata/Prelude.lc 34:28-34:29 forall a . a -> List a -> List a +testdata/Prelude.lc 34:30-34:33 forall a b . List a -> List b -> List (a, b) +testdata/Prelude.lc 34:30-34:36 List _a -> List (_h, _a) +testdata/Prelude.lc 34:30-34:39 List (_g, _c) +testdata/Prelude.lc 34:34-34:36 List _i +testdata/Prelude.lc 34:37-34:39 List _c testdata/Prelude.lc 36:10-36:17 Type testdata/Prelude.lc 36:10-36:30 Type -testdata/Prelude.lc 36:10-39:27 a_->a_ | {a} -> {b} -> List (a, b) -> (List a, List b) +testdata/Prelude.lc 36:10-39:27 _a -> _a | forall a b . List (a, b) -> (List a, List b) testdata/Prelude.lc 36:11-36:16 Type -testdata/Prelude.lc 36:12-36:13 e_ +testdata/Prelude.lc 36:12-36:13 _e testdata/Prelude.lc 36:12-36:15 List Type -testdata/Prelude.lc 36:14-36:15 List Type | c_ +testdata/Prelude.lc 36:14-36:15 List Type | _c testdata/Prelude.lc 36:21-36:30 Type testdata/Prelude.lc 36:22-36:25 Type testdata/Prelude.lc 36:22-36:29 List Type testdata/Prelude.lc 36:23-36:24 Type testdata/Prelude.lc 36:26-36:29 List Type | Type testdata/Prelude.lc 36:27-36:28 Type -testdata/Prelude.lc 37:1-37:6 {a} -> {b} -> List (a, b) -> (List a, List b) -testdata/Prelude.lc 37:12-37:19 (List b_, List a_) -testdata/Prelude.lc 37:12-39:27 (List c_, List b_) | List (b_, a_) -> (List b_, List a_) -testdata/Prelude.lc 37:13-37:15 {a} -> List a -testdata/Prelude.lc 37:16-37:18 ((List a_)) | {a} -> List a -testdata/Prelude.lc 38:20-38:31 (List n_, List i_) -testdata/Prelude.lc 38:20-39:27 (List d_, List a_) | (List d_, List c_) | (List h_, List c_) | HList c_ -> b_ | List d_ -> (List c_, List b_) | c_ -> HList b_ -> a_ | c_ -> List c_ -> (List b_, List a_) -testdata/Prelude.lc 38:21-38:22 s_ -testdata/Prelude.lc 38:21-38:23 List r_ -> List r_ -testdata/Prelude.lc 38:21-38:25 List p_ -testdata/Prelude.lc 38:22-38:23 {a} -> a -> List a -> List a -testdata/Prelude.lc 38:23-38:25 List f_ -testdata/Prelude.lc 38:26-38:27 n_ -testdata/Prelude.lc 38:26-38:28 List m_ -> List m_ -testdata/Prelude.lc 38:26-38:30 ((List i_)) | List k_ -testdata/Prelude.lc 38:27-38:28 {a} -> a -> List a -> List a -testdata/Prelude.lc 38:28-38:30 List f_ -testdata/Prelude.lc 39:10-39:12 HList c_ -> b_ | c_ -> HList b_ -> a_ | d_ | h_ | k_ -testdata/Prelude.lc 39:10-39:15 (List e_, List d_) | (List f_, List e_) -testdata/Prelude.lc 39:13-39:15 HList c_ -> b_ | c_ | c_ -> HList b_ -> a_ | f_ -testdata/Prelude.lc 39:19-39:24 {a} -> {b} -> List (a, b) -> (List a, List b) -testdata/Prelude.lc 39:19-39:27 (List b_, List a_) -testdata/Prelude.lc 39:25-39:27 List r_ -testdata/Prelude.lc 41:1-41:7 {a} -> (a->Bool) -> List a -> List a -testdata/Prelude.lc 41:21-41:23 {a} -> List a -testdata/Prelude.lc 41:21-44:49 List a_ -> List a_ | a_->a_ -testdata/Prelude.lc 42:22-44:49 List c_ | List c_ -> List b_ | b_ -> List b_ -> List a_ -testdata/Prelude.lc 42:27-42:31 g_ -testdata/Prelude.lc 42:32-42:33 f_ -testdata/Prelude.lc 43:32-44:49 Bool -> List f_ -testdata/Prelude.lc 43:33-43:34 h_ -testdata/Prelude.lc 43:33-43:36 List g_ -> List g_ -testdata/Prelude.lc 43:33-43:51 List f_ -testdata/Prelude.lc 43:35-43:36 {a} -> a -> List a -> List a -testdata/Prelude.lc 43:37-43:43 j_ -> List f_ -> List f_ -testdata/Prelude.lc 43:37-43:48 List f_ -> List f_ -testdata/Prelude.lc 43:37-43:51 List f_ -testdata/Prelude.lc 43:44-43:48 j_ -testdata/Prelude.lc 43:49-43:51 List f_ -testdata/Prelude.lc 44:34-44:40 m_ -testdata/Prelude.lc 44:41-44:45 n_ -testdata/Prelude.lc 44:46-44:48 List k_ +testdata/Prelude.lc 37:1-37:6 forall a b . List (a, b) -> (List a, List b) +testdata/Prelude.lc 37:12-37:19 (List _b, List _a) +testdata/Prelude.lc 37:12-39:27 (List _c, List _b) | List (_b, _a) -> (List _b, List _a) +testdata/Prelude.lc 37:13-37:15 forall a . List a +testdata/Prelude.lc 37:16-37:18 ((List _a)) | forall a . List a +testdata/Prelude.lc 38:20-38:31 (List _n, List _i) +testdata/Prelude.lc 38:20-39:27 (List _d, List _a) | (List _d, List _c) | (List _h, List _c) | HList _c -> _b | List _d -> (List _c, List _b) | _c -> HList _b -> _a | _c -> List _c -> (List _b, List _a) +testdata/Prelude.lc 38:21-38:22 _s +testdata/Prelude.lc 38:21-38:23 List _r -> List _r +testdata/Prelude.lc 38:21-38:25 List _p +testdata/Prelude.lc 38:22-38:23 forall a . a -> List a -> List a +testdata/Prelude.lc 38:23-38:25 List _f +testdata/Prelude.lc 38:26-38:27 _n +testdata/Prelude.lc 38:26-38:28 List _m -> List _m +testdata/Prelude.lc 38:26-38:30 ((List _i)) | List _k +testdata/Prelude.lc 38:27-38:28 forall a . a -> List a -> List a +testdata/Prelude.lc 38:28-38:30 List _f +testdata/Prelude.lc 39:10-39:12 HList _c -> _b | _c -> HList _b -> _a | _d | _h | _k +testdata/Prelude.lc 39:10-39:15 (List _e, List _d) | (List _f, List _e) +testdata/Prelude.lc 39:13-39:15 HList _c -> _b | _c | _c -> HList _b -> _a | _f +testdata/Prelude.lc 39:19-39:24 forall a b . List (a, b) -> (List a, List b) +testdata/Prelude.lc 39:19-39:27 (List _b, List _a) +testdata/Prelude.lc 39:25-39:27 List _r +testdata/Prelude.lc 41:1-41:7 forall a . (a -> Bool) -> List a -> List a +testdata/Prelude.lc 41:21-41:23 forall a . List a +testdata/Prelude.lc 41:21-44:49 List _a -> List _a | _a -> _a +testdata/Prelude.lc 42:22-44:49 List _c | List _c -> List _b | _b -> List _b -> List _a +testdata/Prelude.lc 42:27-42:31 _g +testdata/Prelude.lc 42:32-42:33 _f +testdata/Prelude.lc 43:32-44:49 Bool -> List _f +testdata/Prelude.lc 43:33-43:34 _h +testdata/Prelude.lc 43:33-43:36 List _g -> List _g +testdata/Prelude.lc 43:33-43:51 List _f +testdata/Prelude.lc 43:35-43:36 forall a . a -> List a -> List a +testdata/Prelude.lc 43:37-43:43 _j -> List _f -> List _f +testdata/Prelude.lc 43:37-43:48 List _f -> List _f +testdata/Prelude.lc 43:37-43:51 List _f +testdata/Prelude.lc 43:44-43:48 _j +testdata/Prelude.lc 43:49-43:51 List _f +testdata/Prelude.lc 44:34-44:40 _m +testdata/Prelude.lc 44:41-44:45 _n +testdata/Prelude.lc 44:46-44:48 List _k testdata/Prelude.lc 49:9-49:12 Type testdata/Prelude.lc 49:9-49:19 Type -testdata/Prelude.lc 49:10-49:11 b_ +testdata/Prelude.lc 49:10-49:11 _b testdata/Prelude.lc 49:16-49:19 Type testdata/Prelude.lc 49:17-49:18 Type -testdata/Prelude.lc 50:1-50:5 {a} -> List a -> List a -testdata/Prelude.lc 50:16-50:18 List a_ -> List a_ | List b_ | List c_ -> b_ | List d_ | b_ -> List b_ -> a_ +testdata/Prelude.lc 50:1-50:5 forall a . List a -> List a +testdata/Prelude.lc 50:16-50:18 List _a -> List _a | List _b | List _c -> _b | List _d | _b -> List _b -> _a testdata/Prelude.lc 52:10-52:13 Type testdata/Prelude.lc 52:10-52:25 Type -testdata/Prelude.lc 52:11-52:12 b_ +testdata/Prelude.lc 52:11-52:12 _b testdata/Prelude.lc 52:17-52:25 Type testdata/Prelude.lc 52:18-52:24 Type testdata/Prelude.lc 52:19-52:20 Type testdata/Prelude.lc 52:19-52:23 List Type testdata/Prelude.lc 52:22-52:23 List Type | Type -testdata/Prelude.lc 53:1-53:6 {a} -> List a -> List (a, a) -testdata/Prelude.lc 53:11-53:14 {a} -> {b} -> List a -> List b -> List (a, b) -testdata/Prelude.lc 53:11-53:16 List a_ -> List (c_, a_) -testdata/Prelude.lc 53:11-53:25 List (b_, b_) | List a_ -> List (a_, a_) -testdata/Prelude.lc 53:15-53:16 List d_ -testdata/Prelude.lc 53:18-53:22 {a} -> List a -> List a -testdata/Prelude.lc 53:18-53:24 List b_ -testdata/Prelude.lc 53:23-53:24 List c_ -testdata/Prelude.lc 55:1-55:7 {a} -> {b} -> (a -> b->a) -> a -> List b -> a -testdata/Prelude.lc 55:17-55:18 f_ -testdata/Prelude.lc 55:17-56:41 List b_ -> f_ | a_->a_ -testdata/Prelude.lc 56:22-56:28 k_ -testdata/Prelude.lc 56:22-56:41 List b_ -> f_ | a_ -> List a_ -> e_ -testdata/Prelude.lc 56:29-56:30 l_ -testdata/Prelude.lc 56:32-56:33 m_ -testdata/Prelude.lc 56:34-56:35 n_ -testdata/Prelude.lc 56:36-56:37 k_ -testdata/Prelude.lc 56:39-56:41 List h_ -testdata/Prelude.lc 58:1-58:7 {a} -> (a -> a->a) -> List a -> a -testdata/Prelude.lc 58:20-58:25 {a} -> {b} -> (b -> a->a) -> a -> List b -> a -testdata/Prelude.lc 58:20-58:27 b_ -> List a_ -> b_ -testdata/Prelude.lc 58:20-58:29 List a_ -> e_ -testdata/Prelude.lc 58:20-58:32 List c_ -> b_ | b_ -> List b_ -> a_ | c_ -testdata/Prelude.lc 58:26-58:27 j_ -testdata/Prelude.lc 58:28-58:29 f_ -testdata/Prelude.lc 58:30-58:32 List d_ -testdata/Prelude.lc 60:1-60:6 {a} -> List a -> (List a, List a) -testdata/Prelude.lc 60:12-60:20 (List b_, List a_) -testdata/Prelude.lc 60:12-61:55 List b_ -> (List b_, List a_) | a_->a_ -testdata/Prelude.lc 60:13-60:15 {a} -> List a -testdata/Prelude.lc 60:17-60:19 ((List a_)) | {a} -> List a -testdata/Prelude.lc 61:17-61:28 (List i_, c_) -testdata/Prelude.lc 61:17-61:55 List d_ -> (List c_, List b_) | c_ -> List c_ -> (List b_, List a_) -testdata/Prelude.lc 61:18-61:19 m_ -testdata/Prelude.lc 61:18-61:20 List l_ -> List l_ -testdata/Prelude.lc 61:18-61:23 List j_ -testdata/Prelude.lc 61:19-61:20 {a} -> a -> List a -> List a -testdata/Prelude.lc 61:21-61:23 d_ -testdata/Prelude.lc 61:25-61:27 ((c_)) | f_ -testdata/Prelude.lc 61:37-61:39 HList c_ -> b_ | c_ -> HList b_ -> a_ | d_ | h_ | k_ -testdata/Prelude.lc 61:37-61:43 (e_, d_) | d_ -testdata/Prelude.lc 61:41-61:43 HList c_ -> b_ | c_ | c_ -> HList b_ -> a_ | f_ -testdata/Prelude.lc 61:47-61:52 i_ -testdata/Prelude.lc 61:53-61:55 List h_ -testdata/Prelude.lc 63:1-63:8 {a} -> (a -> a->Ordering) -> List a -> List a -> List a -testdata/Prelude.lc 63:27-65:32 List b_ -> i_ | List e_ | a_ -> List a_ -> h_ -testdata/Prelude.lc 63:27-67:21 List b_ -> d_ | List c_ | List c_ -> List c_ | a_ -> List a_ -> c_ | a_->a_ -testdata/Prelude.lc 63:32-63:33 j_ -testdata/Prelude.lc 63:34-63:35 h_ -testdata/Prelude.lc 63:36-63:37 i_ -testdata/Prelude.lc 64:11-64:12 j_ -testdata/Prelude.lc 64:11-64:13 List i_ -> List i_ -testdata/Prelude.lc 64:11-64:33 List h_ -testdata/Prelude.lc 64:11-65:32 List g_ -> Ordering -> List g_ -testdata/Prelude.lc 64:12-64:13 {a} -> a -> List a -> List a -testdata/Prelude.lc 64:14-64:21 p_ -testdata/Prelude.lc 64:22-64:23 q_ -testdata/Prelude.lc 64:24-64:26 List l_ -testdata/Prelude.lc 64:28-64:29 j_ -testdata/Prelude.lc 64:28-64:30 List i_ -> List i_ -testdata/Prelude.lc 64:28-64:32 List i_ -testdata/Prelude.lc 64:29-64:30 {a} -> a -> List a -> List a -testdata/Prelude.lc 64:30-64:32 List i_ -testdata/Prelude.lc 65:10-65:11 f_ | h_ -testdata/Prelude.lc 65:10-65:12 List e_ -> List e_ | List g_ -> List g_ -testdata/Prelude.lc 65:10-65:32 List g_ -testdata/Prelude.lc 65:11-65:12 {a} -> a -> List a -> List a -testdata/Prelude.lc 65:13-65:20 m_ -> List g_ -> List g_ -> List g_ -testdata/Prelude.lc 65:13-65:22 List g_ -> List g_ -> List g_ -testdata/Prelude.lc 65:13-65:29 List g_ -> List g_ -testdata/Prelude.lc 65:13-65:32 List g_ -testdata/Prelude.lc 65:21-65:22 m_ -testdata/Prelude.lc 65:24-65:25 h_ -testdata/Prelude.lc 65:24-65:26 List g_ -> List g_ -testdata/Prelude.lc 65:24-65:28 List g_ -testdata/Prelude.lc 65:25-65:26 {a} -> a -> List a -> List a -testdata/Prelude.lc 65:26-65:28 List g_ -testdata/Prelude.lc 65:30-65:32 List g_ -testdata/Prelude.lc 66:19-66:21 d_ -testdata/Prelude.lc 67:19-67:21 i_ -testdata/Prelude.lc 69:1-69:7 {a} -> (a -> a->Ordering) -> List a -> List a -testdata/Prelude.lc 69:15-69:17 {a} -> List a -testdata/Prelude.lc 69:15-71:71 List b_ -> List b_ | a_->a_ -testdata/Prelude.lc 70:16-70:19 List e_ -testdata/Prelude.lc 70:16-71:71 List b_ -> List f_ | List c_ -> List b_ | List d_ | b_ -> List b_ -> List a_ -testdata/Prelude.lc 70:17-70:18 g_ -testdata/Prelude.lc 71:15-71:22 {a} -> {b} -> {c} -> (a -> c->b) -> (a, c)->b -testdata/Prelude.lc 71:15-71:34 (List a_, List a_) -> List a_ -testdata/Prelude.lc 71:15-71:71 List b_ -> List f_ | List h_ | a_ -> List a_ -> List e_ -testdata/Prelude.lc 71:24-71:31 {a} -> (a -> a->Ordering) -> List a -> List a -> List a -testdata/Prelude.lc 71:24-71:33 List a_ -> List a_ -> List a_ -testdata/Prelude.lc 71:32-71:33 o_ -testdata/Prelude.lc 71:36-71:70 (List h_, List h_) -testdata/Prelude.lc 71:37-71:43 p_ -testdata/Prelude.lc 71:37-71:49 (c_->a_) -> (d_, c_)->(b_, a_) -testdata/Prelude.lc 71:37-71:58 (b_, b_)->(a_, a_) -testdata/Prelude.lc 71:44-71:45 n_ -> n_->Ordering -testdata/Prelude.lc 71:46-71:49 {a} -> {b} -> {c} -> {d} -> (a->c) -> (b->d) -> (a, b)->(c, d) -testdata/Prelude.lc 71:50-71:56 (k_ -> k_->Ordering) -> d_->b_ -testdata/Prelude.lc 71:50-71:58 b_->a_ -testdata/Prelude.lc 71:57-71:58 i_ -> i_->Ordering -testdata/Prelude.lc 71:61-71:66 {a} -> List a -> (List a, List a) -testdata/Prelude.lc 71:61-71:69 (List a_, List a_) -testdata/Prelude.lc 71:67-71:69 k_ +testdata/Prelude.lc 53:1-53:6 forall a . List a -> List (a, a) +testdata/Prelude.lc 53:11-53:14 forall a b . List a -> List b -> List (a, b) +testdata/Prelude.lc 53:11-53:16 List _a -> List (_c, _a) +testdata/Prelude.lc 53:11-53:25 List (_b, _b) | List _a -> List (_a, _a) +testdata/Prelude.lc 53:15-53:16 List _d +testdata/Prelude.lc 53:18-53:22 forall a . List a -> List a +testdata/Prelude.lc 53:18-53:24 List _b +testdata/Prelude.lc 53:23-53:24 List _c +testdata/Prelude.lc 55:1-55:7 forall a b . (a -> b -> a) -> a -> List b -> a +testdata/Prelude.lc 55:17-55:18 _f +testdata/Prelude.lc 55:17-56:41 List _b -> _f | _a -> _a +testdata/Prelude.lc 56:22-56:28 _k +testdata/Prelude.lc 56:22-56:41 List _b -> _f | _a -> List _a -> _e +testdata/Prelude.lc 56:29-56:30 _l +testdata/Prelude.lc 56:32-56:33 _m +testdata/Prelude.lc 56:34-56:35 _n +testdata/Prelude.lc 56:36-56:37 _k +testdata/Prelude.lc 56:39-56:41 List _h +testdata/Prelude.lc 58:1-58:7 forall a . (a -> a -> a) -> List a -> a +testdata/Prelude.lc 58:20-58:25 forall a b . (b -> a -> a) -> a -> List b -> a +testdata/Prelude.lc 58:20-58:27 _b -> List _a -> _b +testdata/Prelude.lc 58:20-58:29 List _a -> _e +testdata/Prelude.lc 58:20-58:32 List _c -> _b | _b -> List _b -> _a | _c +testdata/Prelude.lc 58:26-58:27 _j +testdata/Prelude.lc 58:28-58:29 _f +testdata/Prelude.lc 58:30-58:32 List _d +testdata/Prelude.lc 60:1-60:6 forall a . List a -> (List a, List a) +testdata/Prelude.lc 60:12-60:20 (List _b, List _a) +testdata/Prelude.lc 60:12-61:55 List _b -> (List _b, List _a) | _a -> _a +testdata/Prelude.lc 60:13-60:15 forall a . List a +testdata/Prelude.lc 60:17-60:19 ((List _a)) | forall a . List a +testdata/Prelude.lc 61:17-61:28 (List _i, _c) +testdata/Prelude.lc 61:17-61:55 List _d -> (List _c, List _b) | _c -> List _c -> (List _b, List _a) +testdata/Prelude.lc 61:18-61:19 _m +testdata/Prelude.lc 61:18-61:20 List _l -> List _l +testdata/Prelude.lc 61:18-61:23 List _j +testdata/Prelude.lc 61:19-61:20 forall a . a -> List a -> List a +testdata/Prelude.lc 61:21-61:23 _d +testdata/Prelude.lc 61:25-61:27 ((_c)) | _f +testdata/Prelude.lc 61:37-61:39 HList _c -> _b | _c -> HList _b -> _a | _d | _h | _k +testdata/Prelude.lc 61:37-61:43 (_e, _d) | _d +testdata/Prelude.lc 61:41-61:43 HList _c -> _b | _c | _c -> HList _b -> _a | _f +testdata/Prelude.lc 61:47-61:52 _i +testdata/Prelude.lc 61:53-61:55 List _h +testdata/Prelude.lc 63:1-63:8 forall a . (a -> a -> Ordering) -> List a -> List a -> List a +testdata/Prelude.lc 63:27-65:32 List _b -> _i | List _e | _a -> List _a -> _h +testdata/Prelude.lc 63:27-67:21 List _b -> _d | List _c | List _c -> List _c | _a -> List _a -> _c | _a -> _a +testdata/Prelude.lc 63:32-63:33 _j +testdata/Prelude.lc 63:34-63:35 _h +testdata/Prelude.lc 63:36-63:37 _i +testdata/Prelude.lc 64:11-64:12 _j +testdata/Prelude.lc 64:11-64:13 List _i -> List _i +testdata/Prelude.lc 64:11-64:33 List _h +testdata/Prelude.lc 64:11-65:32 List _g -> Ordering -> List _g +testdata/Prelude.lc 64:12-64:13 forall a . a -> List a -> List a +testdata/Prelude.lc 64:14-64:21 _p +testdata/Prelude.lc 64:22-64:23 _q +testdata/Prelude.lc 64:24-64:26 List _l +testdata/Prelude.lc 64:28-64:29 _j +testdata/Prelude.lc 64:28-64:30 List _i -> List _i +testdata/Prelude.lc 64:28-64:32 List _i +testdata/Prelude.lc 64:29-64:30 forall a . a -> List a -> List a +testdata/Prelude.lc 64:30-64:32 List _i +testdata/Prelude.lc 65:10-65:11 _f | _h +testdata/Prelude.lc 65:10-65:12 List _e -> List _e | List _g -> List _g +testdata/Prelude.lc 65:10-65:32 List _g +testdata/Prelude.lc 65:11-65:12 forall a . a -> List a -> List a +testdata/Prelude.lc 65:13-65:20 _m -> List _g -> List _g -> List _g +testdata/Prelude.lc 65:13-65:22 List _g -> List _g -> List _g +testdata/Prelude.lc 65:13-65:29 List _g -> List _g +testdata/Prelude.lc 65:13-65:32 List _g +testdata/Prelude.lc 65:21-65:22 _m +testdata/Prelude.lc 65:24-65:25 _h +testdata/Prelude.lc 65:24-65:26 List _g -> List _g +testdata/Prelude.lc 65:24-65:28 List _g +testdata/Prelude.lc 65:25-65:26 forall a . a -> List a -> List a +testdata/Prelude.lc 65:26-65:28 List _g +testdata/Prelude.lc 65:30-65:32 List _g +testdata/Prelude.lc 66:19-66:21 _d +testdata/Prelude.lc 67:19-67:21 _i +testdata/Prelude.lc 69:1-69:7 forall a . (a -> a -> Ordering) -> List a -> List a +testdata/Prelude.lc 69:15-69:17 forall a . List a +testdata/Prelude.lc 69:15-71:71 List _b -> List _b | _a -> _a +testdata/Prelude.lc 70:16-70:19 List _e +testdata/Prelude.lc 70:16-71:71 List _b -> List _f | List _c -> List _b | List _d | _b -> List _b -> List _a +testdata/Prelude.lc 70:17-70:18 _g +testdata/Prelude.lc 71:15-71:22 forall a b c . (a -> c -> b) -> (a, c) -> b +testdata/Prelude.lc 71:15-71:34 (List _a, List _a) -> List _a +testdata/Prelude.lc 71:15-71:71 List _b -> List _f | List _h | _a -> List _a -> List _e +testdata/Prelude.lc 71:24-71:31 forall a . (a -> a -> Ordering) -> List a -> List a -> List a +testdata/Prelude.lc 71:24-71:33 List _a -> List _a -> List _a +testdata/Prelude.lc 71:32-71:33 _o +testdata/Prelude.lc 71:36-71:70 (List _h, List _h) +testdata/Prelude.lc 71:37-71:43 _p +testdata/Prelude.lc 71:37-71:49 (_c -> _a) -> (_d, _c) -> (_b, _a) +testdata/Prelude.lc 71:37-71:58 (_b, _b) -> (_a, _a) +testdata/Prelude.lc 71:44-71:45 _n -> _n -> Ordering +testdata/Prelude.lc 71:46-71:49 forall a b c d . (a -> c) -> (b -> d) -> (a, b) -> (c, d) +testdata/Prelude.lc 71:50-71:56 (_k -> _k -> Ordering) -> _d -> _b +testdata/Prelude.lc 71:50-71:58 _b -> _a +testdata/Prelude.lc 71:57-71:58 _i -> _i -> Ordering +testdata/Prelude.lc 71:61-71:66 forall a . List a -> (List a, List a) +testdata/Prelude.lc 71:61-71:69 (List _a, List _a) +testdata/Prelude.lc 71:67-71:69 _k testdata/Prelude.lc 73:12-73:32 Type -testdata/Prelude.lc 73:12-74:35 a_->a_ | {a} -> (a->a) -> a -> List a -testdata/Prelude.lc 73:13-73:14 b_ +testdata/Prelude.lc 73:12-74:35 _a -> _a | forall a . (a -> a) -> a -> List a +testdata/Prelude.lc 73:13-73:14 _b testdata/Prelude.lc 73:18-73:19 Type testdata/Prelude.lc 73:24-73:25 Type testdata/Prelude.lc 73:24-73:32 Type testdata/Prelude.lc 73:29-73:32 Type testdata/Prelude.lc 73:30-73:31 Type -testdata/Prelude.lc 74:1-74:8 {a} -> (a->a) -> a -> List a -testdata/Prelude.lc 74:16-74:17 d_ -testdata/Prelude.lc 74:16-74:19 List c_ -> List c_ -testdata/Prelude.lc 74:16-74:35 (a_->a_) -> a_ -> List a_ | List c_ | b_ -> List b_ -testdata/Prelude.lc 74:18-74:19 {a} -> a -> List a -> List a -testdata/Prelude.lc 74:20-74:27 {a} -> (a->a) -> a -> List a -testdata/Prelude.lc 74:20-74:29 c_ -> List c_ -testdata/Prelude.lc 74:20-74:35 List c_ -testdata/Prelude.lc 74:28-74:29 d_->d_ -testdata/Prelude.lc 74:31-74:32 c_->c_ -testdata/Prelude.lc 74:31-74:34 c_ -testdata/Prelude.lc 74:33-74:34 c_ -testdata/Prelude.lc 76:1-76:4 {a} -> {b} -> (a, b)->a -testdata/Prelude.lc 76:14-76:15 HList c_ -> b_ | c_ -> HList b_ -> a_ | d_ | h_ | k_ -testdata/Prelude.lc 77:1-77:4 {a} -> {b} -> (a, b)->b -testdata/Prelude.lc 77:14-77:15 HList c_ -> b_ | c_ | c_ -> HList b_ -> a_ | f_ -testdata/Prelude.lc 79:7-79:10 Bool -> Bool->Bool -testdata/Prelude.lc 79:15-79:16 c_ -testdata/Prelude.lc 79:15-80:18 Bool->Bool +testdata/Prelude.lc 74:1-74:8 forall a . (a -> a) -> a -> List a +testdata/Prelude.lc 74:16-74:17 _d +testdata/Prelude.lc 74:16-74:19 List _c -> List _c +testdata/Prelude.lc 74:16-74:35 (_a -> _a) -> _a -> List _a | List _c | _b -> List _b +testdata/Prelude.lc 74:18-74:19 forall a . a -> List a -> List a +testdata/Prelude.lc 74:20-74:27 forall a . (a -> a) -> a -> List a +testdata/Prelude.lc 74:20-74:29 _c -> List _c +testdata/Prelude.lc 74:20-74:35 List _c +testdata/Prelude.lc 74:28-74:29 _d -> _d +testdata/Prelude.lc 74:31-74:32 _c -> _c +testdata/Prelude.lc 74:31-74:34 _c +testdata/Prelude.lc 74:33-74:34 _c +testdata/Prelude.lc 76:1-76:4 forall a b . (a, b) -> a +testdata/Prelude.lc 76:14-76:15 HList _c -> _b | _c -> HList _b -> _a | _d | _h | _k +testdata/Prelude.lc 77:1-77:4 forall a b . (a, b) -> b +testdata/Prelude.lc 77:14-77:15 HList _c -> _b | _c | _c -> HList _b -> _a | _f +testdata/Prelude.lc 79:7-79:10 Bool -> Bool -> Bool +testdata/Prelude.lc 79:15-79:16 _c +testdata/Prelude.lc 79:15-80:18 Bool -> Bool testdata/Prelude.lc 80:14-80:18 Bool -testdata/Prelude.lc 84:6-84:9 Bool -> Bool->Bool -testdata/Prelude.lc 84:14-84:15 b_ -testdata/Prelude.lc 84:14-85:20 Bool->Bool +testdata/Prelude.lc 84:6-84:9 Bool -> Bool -> Bool +testdata/Prelude.lc 84:14-84:15 _b +testdata/Prelude.lc 84:14-85:20 Bool -> Bool testdata/Prelude.lc 85:15-85:20 Bool testdata/Prelude.lc 122:6-122:13 Type testdata/Prelude.lc 122:6-122:23 Type testdata/Prelude.lc 122:6-122:35 Type -testdata/Prelude.lc 122:16-122:23 RecItem | String -> Type->RecItem | Type +testdata/Prelude.lc 122:16-122:23 RecItem | String -> Type -> RecItem | Type testdata/Prelude.lc 122:24-122:30 Type testdata/Prelude.lc 122:31-122:35 Type -testdata/Prelude.lc 124:1-124:12 RecItem->Type -testdata/Prelude.lc 124:29-124:30 String -> Type->a_ | Type | Type->b_ +testdata/Prelude.lc 124:1-124:12 RecItem -> Type +testdata/Prelude.lc 124:29-124:30 String -> Type -> _a | Type | Type -> _b testdata/Prelude.lc 126:6-126:13 List RecItem -> Type | Type testdata/Prelude.lc 126:6-126:17 Type testdata/Prelude.lc 126:6-127:17 Type @@ -449,48 +449,48 @@ testdata/Prelude.lc 126:6-127:46 Type testdata/Prelude.lc 126:15-126:17 List RecItem testdata/Prelude.lc 126:21-126:30 Type testdata/Prelude.lc 126:22-126:29 Type -testdata/Prelude.lc 127:7-127:17 RecordC c_ | Type | {a : List RecItem} -> HList ('map RecItem Type 'recItemType a) -> RecordC a +testdata/Prelude.lc 127:7-127:17 RecordC _c | Type | forall (a :: List RecItem) . HList ('map RecItem Type 'recItemType a) -> RecordC a testdata/Prelude.lc 127:19-127:24 List Type -> Type testdata/Prelude.lc 127:19-127:45 Type -testdata/Prelude.lc 127:26-127:29 {a} -> {b} -> (a->b) -> List a -> List b +testdata/Prelude.lc 127:26-127:29 forall a b . (a -> b) -> List a -> List b testdata/Prelude.lc 127:26-127:41 List RecItem -> List Type testdata/Prelude.lc 127:26-127:44 List Type -testdata/Prelude.lc 127:30-127:41 RecItem->Type +testdata/Prelude.lc 127:30-127:41 RecItem -> Type testdata/Prelude.lc 127:42-127:44 List RecItem testdata/Prelude.lc 129:1-129:7 String -> Type -> List RecItem -> Type -testdata/Prelude.lc 129:17-129:23 String->Type +testdata/Prelude.lc 129:17-129:23 String -> Type testdata/Prelude.lc 129:17-129:26 Type -testdata/Prelude.lc 129:17-130:75 List RecItem -> Type | a_->a_ +testdata/Prelude.lc 129:17-130:75 List RecItem -> Type | _a -> _a testdata/Prelude.lc 129:24-129:26 String -testdata/Prelude.lc 130:34-130:75 List b_ -> Type | String -> Type->a_ | Type | Type->b_ | a_ -> List a_ -> Type -testdata/Prelude.lc 130:37-130:38 o_ -testdata/Prelude.lc 130:37-130:41 n_->Bool +testdata/Prelude.lc 130:34-130:75 List _b -> Type | String -> Type -> _a | Type | Type -> _b | _a -> List _a -> Type +testdata/Prelude.lc 130:37-130:38 _o +testdata/Prelude.lc 130:37-130:41 _n -> Bool testdata/Prelude.lc 130:37-130:44 Bool -testdata/Prelude.lc 130:37-130:56 Type->Type -testdata/Prelude.lc 130:39-130:41 {a} -> {_ : Eq a} -> a -> a->Bool +testdata/Prelude.lc 130:37-130:56 Type -> Type +testdata/Prelude.lc 130:39-130:41 forall a . Eq a => a -> a -> Bool testdata/Prelude.lc 130:42-130:44 String -testdata/Prelude.lc 130:50-130:51 l_ -testdata/Prelude.lc 130:50-130:53 k_->Type +testdata/Prelude.lc 130:50-130:51 _l +testdata/Prelude.lc 130:50-130:53 _k -> Type testdata/Prelude.lc 130:50-130:56 Type -testdata/Prelude.lc 130:52-130:53 {a} -> a -> a->Type +testdata/Prelude.lc 130:52-130:53 forall a . a -> a -> Type testdata/Prelude.lc 130:54-130:56 Type -testdata/Prelude.lc 130:62-130:68 k_ +testdata/Prelude.lc 130:62-130:68 _k testdata/Prelude.lc 130:69-130:70 String testdata/Prelude.lc 130:71-130:72 Type -testdata/Prelude.lc 130:73-130:75 List i_ -testdata/Prelude.lc 132:1-132:7 {a} -> {b : List Type} -> HList ('Cons a b) -> a -testdata/Prelude.lc 132:10-132:23 {a} -> {b : List Type} -> (c:Type) -> (a -> HList b -> c) -> HList ('Cons a b) -> c -testdata/Prelude.lc 132:10-132:25 (c_ -> HList b_ -> a_) -> HList ('Cons c_ b_) -> a_ -testdata/Prelude.lc 132:10-132:37 HList ('Cons b_ a_) -> b_ -testdata/Prelude.lc 132:27-132:36 c_ -> HList b_ -> a_ -testdata/Prelude.lc 132:35-132:36 HList c_ -> b_ | e_ -testdata/Prelude.lc 133:1-133:7 {a} -> {b : List Type} -> HList ('Cons a b) -> HList b -testdata/Prelude.lc 133:10-133:23 {a} -> {b : List Type} -> (c:Type) -> (a -> HList b -> c) -> HList ('Cons a b) -> c -testdata/Prelude.lc 133:10-133:25 (c_ -> HList b_ -> a_) -> HList ('Cons c_ b_) -> a_ -testdata/Prelude.lc 133:10-133:37 HList ('Cons b_ a_) -> HList a_ -testdata/Prelude.lc 133:27-133:36 c_ -> HList b_ -> a_ -testdata/Prelude.lc 133:35-133:36 HList c_ -> b_ | HList d_ -testdata/Prelude.lc 136:12-138:181 a_->a_ | {a} -> {b : List RecItem} -> (c:String) -> {_ : 'isKeyC c a b} -> RecordC b -> a +testdata/Prelude.lc 130:73-130:75 List _i +testdata/Prelude.lc 132:1-132:7 forall a (b :: List Type) . HList ('Cons a b) -> a +testdata/Prelude.lc 132:10-132:23 forall a (b :: List Type) . (c :: Type) -> (a -> HList b -> c) -> HList ('Cons a b) -> c +testdata/Prelude.lc 132:10-132:25 (_c -> HList _b -> _a) -> HList ('Cons _c _b) -> _a +testdata/Prelude.lc 132:10-132:37 HList ('Cons _b _a) -> _b +testdata/Prelude.lc 132:27-132:36 _c -> HList _b -> _a +testdata/Prelude.lc 132:35-132:36 HList _c -> _b | _e +testdata/Prelude.lc 133:1-133:7 forall a (b :: List Type) . HList ('Cons a b) -> HList b +testdata/Prelude.lc 133:10-133:23 forall a (b :: List Type) . (c :: Type) -> (a -> HList b -> c) -> HList ('Cons a b) -> c +testdata/Prelude.lc 133:10-133:25 (_c -> HList _b -> _a) -> HList ('Cons _c _b) -> _a +testdata/Prelude.lc 133:10-133:37 HList ('Cons _b _a) -> HList _a +testdata/Prelude.lc 133:27-133:36 _c -> HList _b -> _a +testdata/Prelude.lc 133:35-133:36 HList _c -> _b | HList _d +testdata/Prelude.lc 136:12-138:181 _a -> _a | forall a (b :: List RecItem) . (c :: String) -> 'isKeyC c a b => RecordC b -> a testdata/Prelude.lc 136:28-136:37 Type testdata/Prelude.lc 136:28-136:97 Type testdata/Prelude.lc 136:29-136:36 Type @@ -502,50 +502,50 @@ testdata/Prelude.lc 136:65-136:75 List RecItem -> Type testdata/Prelude.lc 136:65-136:78 Type testdata/Prelude.lc 136:65-136:97 Type testdata/Prelude.lc 136:72-136:73 String -testdata/Prelude.lc 136:74-136:75 d_ +testdata/Prelude.lc 136:74-136:75 _d testdata/Prelude.lc 136:76-136:78 List RecItem testdata/Prelude.lc 136:82-136:89 List RecItem -> Type testdata/Prelude.lc 136:82-136:92 Type testdata/Prelude.lc 136:82-136:97 Type testdata/Prelude.lc 136:90-136:92 List RecItem testdata/Prelude.lc 136:96-136:97 Type -testdata/Prelude.lc 137:1-137:8 {a} -> {b : List RecItem} -> (c:String) -> {_ : 'isKeyC c a b} -> RecordC b -> a +testdata/Prelude.lc 137:1-137:8 forall a (b :: List RecItem) . (c :: String) -> 'isKeyC c a b => RecordC b -> a testdata/Prelude.lc 137:57-137:58 String -testdata/Prelude.lc 137:57-137:61 String->Bool +testdata/Prelude.lc 137:57-137:61 String -> Bool testdata/Prelude.lc 137:57-137:64 Bool -testdata/Prelude.lc 137:57-138:181 (a:String) -> {_ : 'isKeyC a b_ a_} -> RecordC a_ -> b_ | HList ('map RecItem Type 'recItemType b_) -> a_ | List c_ -> b_ | RecordC c_ -> d_ | String -> Type->a_ | Type->b_ | b_ -> List b_ -> a_ | e_ | g_ | j_ | m_ | {_ : 'isKeyC a_ c_ b_} -> RecordC b_ -> c_ | {a : List RecItem} -> (b:String) -> {_ : 'isKeyC b a_ a} -> RecordC a -> a_ | {a} -> {b : List RecItem} -> (c:String) -> {_ : 'isKeyC c a b} -> RecordC b -> a -testdata/Prelude.lc 137:59-137:61 {a} -> {_ : Eq a} -> a -> a->Bool +testdata/Prelude.lc 137:57-138:181 'isKeyC _a _c _b => RecordC _b -> _c | (a :: String) -> 'isKeyC a _b _a => RecordC _a -> _b | HList ('map RecItem Type 'recItemType _b) -> _a | List _c -> _b | RecordC _c -> _d | String -> Type -> _a | Type -> _b | _b -> List _b -> _a | _e | _g | _j | _m | forall (a :: List RecItem) . (b :: String) -> 'isKeyC b _a a => RecordC a -> _a | forall a (b :: List RecItem) . (c :: String) -> 'isKeyC c a b => RecordC b -> a +testdata/Prelude.lc 137:59-137:61 forall a . Eq a => a -> a -> Bool testdata/Prelude.lc 137:62-137:64 String -testdata/Prelude.lc 137:67-137:73 {a} -> {b : List Type} -> HList ('Cons a b) -> a -testdata/Prelude.lc 137:67-137:129 n_ -testdata/Prelude.lc 137:67-138:181 Bool->n_ -testdata/Prelude.lc 137:75-137:87 {a} -> {b} -> a->b -testdata/Prelude.lc 137:75-137:90 {a} -> a_->a -testdata/Prelude.lc 137:75-137:125 a_ -> HList ('Cons q_ ('map RecItem Type 'recItemType j_)) -testdata/Prelude.lc 137:75-137:128 HList ('Cons n_ ('map RecItem Type 'recItemType g_)) +testdata/Prelude.lc 137:67-137:73 forall a (b :: List Type) . HList ('Cons a b) -> a +testdata/Prelude.lc 137:67-137:129 _n +testdata/Prelude.lc 137:67-138:181 Bool -> _n +testdata/Prelude.lc 137:75-137:87 forall a b . a -> b +testdata/Prelude.lc 137:75-137:90 forall a . _a -> a +testdata/Prelude.lc 137:75-137:125 _a -> HList ('Cons _q ('map RecItem Type 'recItemType _j)) +testdata/Prelude.lc 137:75-137:128 HList ('Cons _n ('map RecItem Type 'recItemType _g)) testdata/Prelude.lc 137:93-137:98 List Type -> Type testdata/Prelude.lc 137:93-137:124 Type testdata/Prelude.lc 137:101-137:102 Type testdata/Prelude.lc 137:101-137:104 List Type -> List Type testdata/Prelude.lc 137:101-137:123 List Type -testdata/Prelude.lc 137:103-137:104 {a} -> a -> List a -> List a -testdata/Prelude.lc 137:105-137:108 {a} -> {b} -> (a->b) -> List a -> List b +testdata/Prelude.lc 137:103-137:104 forall a . a -> List a -> List a +testdata/Prelude.lc 137:105-137:108 forall a b . (a -> b) -> List a -> List b testdata/Prelude.lc 137:105-137:120 List RecItem -> List Type testdata/Prelude.lc 137:105-137:123 List Type -testdata/Prelude.lc 137:109-137:120 RecItem->Type +testdata/Prelude.lc 137:109-137:120 RecItem -> Type testdata/Prelude.lc 137:121-137:123 List RecItem -testdata/Prelude.lc 137:126-137:128 HList ('map RecItem Type 'recItemType d_) -testdata/Prelude.lc 138:57-138:64 {a} -> {b : List RecItem} -> (c:String) -> {_ : 'isKeyC c a b} -> RecordC b -> a -testdata/Prelude.lc 138:57-138:67 {a : List RecItem} -> (b:String) -> {_ : 'isKeyC b p_ a} -> RecordC a -> p_ -testdata/Prelude.lc 138:57-138:71 (a:String) -> {_ : 'isKeyC a o_ h_} -> RecordC h_ -> o_ -testdata/Prelude.lc 138:57-138:73 {_ : 'isKeyC m_ o_ h_} -> RecordC h_ -> o_ -testdata/Prelude.lc 138:57-138:103 RecordC h_ -> o_ -testdata/Prelude.lc 138:57-138:181 n_ +testdata/Prelude.lc 137:126-137:128 HList ('map RecItem Type 'recItemType _d) +testdata/Prelude.lc 138:57-138:64 forall a (b :: List RecItem) . (c :: String) -> 'isKeyC c a b => RecordC b -> a +testdata/Prelude.lc 138:57-138:67 forall (a :: List RecItem) . (b :: String) -> 'isKeyC b _p a => RecordC a -> _p +testdata/Prelude.lc 138:57-138:71 (a :: String) -> 'isKeyC a _o _h => RecordC _h -> _o +testdata/Prelude.lc 138:57-138:73 'isKeyC _m _o _h => RecordC _h -> _o +testdata/Prelude.lc 138:57-138:103 RecordC _h -> _o +testdata/Prelude.lc 138:57-138:181 _n testdata/Prelude.lc 138:66-138:67 Type -testdata/Prelude.lc 138:69-138:71 List k_ +testdata/Prelude.lc 138:69-138:71 List _k testdata/Prelude.lc 138:72-138:73 String -testdata/Prelude.lc 138:76-138:85 {a}->a -testdata/Prelude.lc 138:76-138:102 'isKeyC m_ o_ h_ +testdata/Prelude.lc 138:76-138:85 forall a . a +testdata/Prelude.lc 138:76-138:102 'isKeyC _m _o _h testdata/Prelude.lc 138:88-138:94 String -> Type -> List RecItem -> Type testdata/Prelude.lc 138:88-138:96 Type -> List RecItem -> Type testdata/Prelude.lc 138:88-138:98 List RecItem -> Type @@ -553,35 +553,35 @@ testdata/Prelude.lc 138:88-138:101 Type testdata/Prelude.lc 138:95-138:96 String testdata/Prelude.lc 138:97-138:98 Type testdata/Prelude.lc 138:99-138:101 List RecItem -testdata/Prelude.lc 138:105-138:115 {a : List RecItem} -> HList ('map RecItem Type 'recItemType a) -> RecordC a -testdata/Prelude.lc 138:105-138:180 RecordC b_ -testdata/Prelude.lc 138:117-138:123 {a} -> {b : List Type} -> HList ('Cons a b) -> HList b -testdata/Prelude.lc 138:117-138:179 HList ('map RecItem Type 'recItemType h_) -testdata/Prelude.lc 138:125-138:137 {a} -> {b} -> a->b -testdata/Prelude.lc 138:125-138:140 {a} -> a_->a -testdata/Prelude.lc 138:125-138:175 a_ -> HList ('Cons r_ ('map RecItem Type 'recItemType k_)) -testdata/Prelude.lc 138:125-138:178 HList ('Cons o_ ('map RecItem Type 'recItemType h_)) +testdata/Prelude.lc 138:105-138:115 forall (a :: List RecItem) . HList ('map RecItem Type 'recItemType a) -> RecordC a +testdata/Prelude.lc 138:105-138:180 RecordC _b +testdata/Prelude.lc 138:117-138:123 forall a (b :: List Type) . HList ('Cons a b) -> HList b +testdata/Prelude.lc 138:117-138:179 HList ('map RecItem Type 'recItemType _h) +testdata/Prelude.lc 138:125-138:137 forall a b . a -> b +testdata/Prelude.lc 138:125-138:140 forall a . _a -> a +testdata/Prelude.lc 138:125-138:175 _a -> HList ('Cons _r ('map RecItem Type 'recItemType _k)) +testdata/Prelude.lc 138:125-138:178 HList ('Cons _o ('map RecItem Type 'recItemType _h)) testdata/Prelude.lc 138:143-138:148 List Type -> Type testdata/Prelude.lc 138:143-138:174 Type testdata/Prelude.lc 138:151-138:152 Type testdata/Prelude.lc 138:151-138:154 List Type -> List Type testdata/Prelude.lc 138:151-138:173 List Type -testdata/Prelude.lc 138:153-138:154 {a} -> a -> List a -> List a -testdata/Prelude.lc 138:155-138:158 {a} -> {b} -> (a->b) -> List a -> List b +testdata/Prelude.lc 138:153-138:154 forall a . a -> List a -> List a +testdata/Prelude.lc 138:155-138:158 forall a b . (a -> b) -> List a -> List b testdata/Prelude.lc 138:155-138:170 List RecItem -> List Type testdata/Prelude.lc 138:155-138:173 List Type -testdata/Prelude.lc 138:159-138:170 RecItem->Type +testdata/Prelude.lc 138:159-138:170 RecItem -> Type testdata/Prelude.lc 138:171-138:173 List RecItem -testdata/Prelude.lc 138:176-138:178 HList ('map RecItem Type 'recItemType e_) +testdata/Prelude.lc 138:176-138:178 HList ('map RecItem Type 'recItemType _e) testdata/Prelude.lc 142:1-142:4 Float -> Float -> Float -> VecS Float 4 -testdata/Prelude.lc 142:13-142:15 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 142:13-142:17 f_ -> f_ -> f_ -> VecS f_ 4 -testdata/Prelude.lc 142:13-142:19 e_ -> e_ -> VecS e_ 4 -testdata/Prelude.lc 142:13-142:21 d_ -> VecS d_ 4 +testdata/Prelude.lc 142:13-142:15 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 142:13-142:17 _f -> _f -> _f -> VecS _f 4 +testdata/Prelude.lc 142:13-142:19 _e -> _e -> VecS _e 4 +testdata/Prelude.lc 142:13-142:21 _d -> VecS _d 4 testdata/Prelude.lc 142:13-142:25 VecS Float 4 -testdata/Prelude.lc 142:16-142:17 g_ -testdata/Prelude.lc 142:18-142:19 d_ -testdata/Prelude.lc 142:20-142:21 b_ +testdata/Prelude.lc 142:16-142:17 _g +testdata/Prelude.lc 142:18-142:19 _d +testdata/Prelude.lc 142:20-142:21 _b testdata/Prelude.lc 142:22-142:25 Float testdata/Prelude.lc 144:1-144:6 VecS Float 4 testdata/Prelude.lc 144:11-144:14 Float -> Float -> Float -> VecS Float 4 @@ -711,30 +711,30 @@ testdata/Prelude.lc 159:11-159:26 VecS Float 4 testdata/Prelude.lc 159:15-159:18 Float testdata/Prelude.lc 159:19-159:22 Float testdata/Prelude.lc 159:23-159:26 Float -testdata/Prelude.lc 161:1-161:12 {a:Nat} -> {b} -> {c} -> {_ : Num b} -> {_ : c ~ VecScalar a b} -> c -> Image 1 ('Color c) -testdata/Prelude.lc 161:15-161:25 {a:Nat} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : d ~ VecScalar b c} -> d -> Image a ('Color d) -testdata/Prelude.lc 161:15-161:28 {a:Nat} -> {b} -> {c} -> {_ : Num b} -> {_ : c ~ VecScalar a b} -> c -> Image 1 ('Color c) -testdata/Prelude.lc 161:27-161:28 b_ -testdata/Prelude.lc 162:1-162:12 {a:Nat} -> {b} -> {c} -> {_ : Num b} -> {_ : c ~ VecScalar a b} -> c -> Image 2 ('Color c) -testdata/Prelude.lc 162:15-162:25 {a:Nat} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : d ~ VecScalar b c} -> d -> Image a ('Color d) -testdata/Prelude.lc 162:15-162:28 {a:Nat} -> {b} -> {c} -> {_ : Num b} -> {_ : c ~ VecScalar a b} -> c -> Image 2 ('Color c) -testdata/Prelude.lc 162:27-162:28 b_ +testdata/Prelude.lc 161:1-161:12 forall (a :: Nat) b c . (Num b, c ~ VecScalar a b) => c -> Image 1 ('Color c) +testdata/Prelude.lc 161:15-161:25 forall (a :: Nat) (b :: Nat) c d . (Num c, d ~ VecScalar b c) => d -> Image a ('Color d) +testdata/Prelude.lc 161:15-161:28 forall (a :: Nat) b c . (Num b, c ~ VecScalar a b) => c -> Image 1 ('Color c) +testdata/Prelude.lc 161:27-161:28 _b +testdata/Prelude.lc 162:1-162:12 forall (a :: Nat) b c . (Num b, c ~ VecScalar a b) => c -> Image 2 ('Color c) +testdata/Prelude.lc 162:15-162:25 forall (a :: Nat) (b :: Nat) c d . (Num c, d ~ VecScalar b c) => d -> Image a ('Color d) +testdata/Prelude.lc 162:15-162:28 forall (a :: Nat) b c . (Num b, c ~ VecScalar a b) => c -> Image 2 ('Color c) +testdata/Prelude.lc 162:27-162:28 _b testdata/Prelude.lc 164:1-164:12 Float -> Image 1 'Depth -testdata/Prelude.lc 164:15-164:25 {a:Nat} -> Float -> Image a 'Depth +testdata/Prelude.lc 164:15-164:25 forall (a :: Nat) . Float -> Image a 'Depth testdata/Prelude.lc 164:15-164:28 Float -> Image 1 'Depth -testdata/Prelude.lc 164:27-164:28 b_ -testdata/Prelude.lc 166:13-166:16 Nat -> Type->Type -testdata/Prelude.lc 166:13-166:18 Type->Type +testdata/Prelude.lc 164:27-164:28 _b +testdata/Prelude.lc 166:13-166:16 Nat -> Type -> Type +testdata/Prelude.lc 166:13-166:18 Type -> Type testdata/Prelude.lc 166:13-166:24 Type -testdata/Prelude.lc 166:17-166:18 b_ +testdata/Prelude.lc 166:17-166:18 _b testdata/Prelude.lc 166:19-166:24 Type -testdata/Prelude.lc 166:28-166:31 Nat -> Type->Type -testdata/Prelude.lc 166:28-166:33 Type->Type +testdata/Prelude.lc 166:28-166:31 Nat -> Type -> Type +testdata/Prelude.lc 166:28-166:33 Type -> Type testdata/Prelude.lc 166:28-166:39 Type -testdata/Prelude.lc 166:32-166:33 b_ +testdata/Prelude.lc 166:32-166:33 _b testdata/Prelude.lc 166:34-166:39 Type testdata/Prelude.lc 167:1-167:9 Vec 3 Float -> VecS Float 4 -testdata/Prelude.lc 167:14-167:16 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 167:14-167:16 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 167:14-167:20 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 167:14-167:24 Float -> Float -> VecS Float 4 testdata/Prelude.lc 167:14-167:28 Float -> VecS Float 4 @@ -745,303 +745,303 @@ testdata/Prelude.lc 167:21-167:22 Vec 3 Float testdata/Prelude.lc 167:21-167:24 Float testdata/Prelude.lc 167:25-167:26 Vec 3 Float testdata/Prelude.lc 167:25-167:28 Float -testdata/Prelude.lc 167:29-167:30 b_ -testdata/Prelude.lc 174:1-174:8 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 174:11-174:22 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 175:1-175:8 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 175:11-175:22 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 176:1-176:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 176:7-176:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 177:1-177:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 177:7-177:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 178:1-178:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 178:7-178:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 179:1-179:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 179:8-179:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 180:1-180:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 180:8-180:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 181:1-181:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 181:8-181:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 182:1-182:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 182:8-182:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 183:1-183:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 183:9-183:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 184:1-184:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 184:8-184:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 185:1-185:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 185:9-185:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 186:1-186:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 186:8-186:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 187:1-187:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 187:9-187:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 188:1-188:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 188:9-188:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 191:1-191:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 191:7-191:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 192:1-192:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 192:7-192:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 193:1-193:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 193:7-193:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 194:1-194:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 194:8-194:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 195:1-195:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 195:8-195:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 196:1-196:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 196:8-196:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 197:1-197:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 197:15-197:26 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 200:1-200:4 {a} -> {b} -> {c:Nat} -> {_ : Signed a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 200:7-200:14 {a} -> {b} -> {c:Nat} -> {_ : Signed a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 201:1-201:5 {a} -> {b} -> {c:Nat} -> {_ : Signed a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 201:8-201:16 {a} -> {b} -> {c:Nat} -> {_ : Signed a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 202:1-202:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 202:9-202:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 203:1-203:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 203:9-203:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 204:1-204:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 204:9-204:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 205:1-205:10 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 205:13-205:26 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 206:1-206:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 206:8-206:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 207:1-207:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 207:9-207:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 208:1-208:4 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 208:7-208:14 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 209:1-209:4 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 209:7-209:14 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 210:1-210:4 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 210:7-210:14 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 211:1-211:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->(a, a) -testdata/Prelude.lc 211:8-211:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->(a, a) -testdata/Prelude.lc 212:1-212:6 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b -> b->b -testdata/Prelude.lc 212:9-212:18 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b -> b->b -testdata/Prelude.lc 213:1-213:7 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> a -> a->b -testdata/Prelude.lc 213:10-213:20 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> a -> a->b -testdata/Prelude.lc 214:1-214:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 214:7-214:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 215:1-215:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> Float->a -testdata/Prelude.lc 215:8-215:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> Float->a -testdata/Prelude.lc 216:1-216:5 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a -> a -> c->a -testdata/Prelude.lc 216:8-216:16 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a -> a -> c->a -testdata/Prelude.lc 217:1-217:5 {a} -> {b:Nat} -> {_ : a ~ VecS Float b} -> a -> a->a -testdata/Prelude.lc 217:8-217:16 {a} -> {b:Nat} -> {_ : a ~ VecS Float b} -> a -> a->a -testdata/Prelude.lc 218:1-218:6 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> Float -> a->a -testdata/Prelude.lc 218:9-218:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> Float -> a->a -testdata/Prelude.lc 219:1-219:11 {a} -> {b:Nat} -> {_ : a ~ VecS Float b} -> a -> a -> a->a -testdata/Prelude.lc 219:14-219:28 {a} -> {b:Nat} -> {_ : a ~ VecS Float b} -> a -> a -> a->a -testdata/Prelude.lc 220:1-220:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> Float -> Float -> a->a -testdata/Prelude.lc 220:15-220:30 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> Float -> Float -> a->a -testdata/Prelude.lc 221:1-221:6 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a->c -testdata/Prelude.lc 221:9-221:18 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a->c -testdata/Prelude.lc 222:1-222:6 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a->c -testdata/Prelude.lc 222:9-222:18 {a} -> {b:Nat} -> {c} -> {_ : a ~ VecScalar b Float} -> {_ : c ~ VecScalar b Bool} -> a->c -testdata/Prelude.lc 224:1-224:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 224:8-224:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 225:1-225:5 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 225:8-225:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 226:1-226:7 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 226:10-226:20 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 228:1-228:7 {a:Nat} -> VecScalar a Float -> Float -testdata/Prelude.lc 228:10-228:20 {a:Nat} -> VecScalar a Float -> Float -testdata/Prelude.lc 229:1-229:7 {a:Nat} -> VecScalar a Float -> Vec 2 Float -testdata/Prelude.lc 229:10-229:20 {a:Nat} -> VecScalar a Float -> Vec 2 Float -testdata/Prelude.lc 230:1-230:7 {a:Nat} -> VecScalar a Float -> Vec 3 Float -testdata/Prelude.lc 230:10-230:20 {a:Nat} -> VecScalar a Float -> Vec 3 Float -testdata/Prelude.lc 231:1-231:7 {a:Nat} -> VecScalar a Float -> Vec 4 Float -testdata/Prelude.lc 231:10-231:20 {a:Nat} -> VecScalar a Float -> Vec 4 Float -testdata/Prelude.lc 234:1-234:7 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->Float -testdata/Prelude.lc 234:10-234:20 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->Float -testdata/Prelude.lc 235:1-235:9 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->Float -testdata/Prelude.lc 235:12-235:24 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->Float -testdata/Prelude.lc 236:1-236:4 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->Float -testdata/Prelude.lc 236:7-236:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->Float -testdata/Prelude.lc 237:1-237:6 {a} -> {_ : a ~ VecS Float 3} -> a -> a->a -testdata/Prelude.lc 237:9-237:18 {a} -> {_ : a ~ VecS Float 3} -> a -> a->a -testdata/Prelude.lc 238:1-238:10 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 238:13-238:26 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 239:1-239:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 239:15-239:30 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 240:1-240:8 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 240:11-240:22 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a->a -testdata/Prelude.lc 241:1-241:8 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 241:11-241:22 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a -> a -> a->a -testdata/Prelude.lc 243:1-243:10 {a:Nat} -> {b:Nat} -> {c} -> Mat a b c -> Mat b a c -testdata/Prelude.lc 243:13-243:26 {a:Nat} -> {b:Nat} -> {c} -> Mat a b c -> Mat b a c -testdata/Prelude.lc 244:1-244:4 {a:Nat} -> {b} -> Mat a a b -> Float -testdata/Prelude.lc 244:7-244:22 {a:Nat} -> {b} -> Mat a a b -> Float -testdata/Prelude.lc 245:1-245:4 {a:Nat} -> {b} -> Mat a a b -> Mat a a b -testdata/Prelude.lc 245:7-245:18 {a:Nat} -> {b} -> Mat a a b -> Mat a a b -testdata/Prelude.lc 246:1-246:6 {a:Nat} -> {b} -> {c:Nat} -> Vec a b -> Vec c b -> Mat c a b -testdata/Prelude.lc 246:9-246:25 {a:Nat} -> {b} -> {c:Nat} -> Vec a b -> Vec c b -> Mat c a b -testdata/Prelude.lc 248:1-248:5 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 248:11-248:19 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 249:1-249:4 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 249:11-249:18 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 250:1-250:5 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 250:11-250:19 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 251:1-251:5 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 251:11-251:19 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b->b -testdata/Prelude.lc 252:1-252:6 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 252:11-252:20 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 253:1-253:5 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 253:11-253:19 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 254:1-254:6 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 254:11-254:20 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 255:1-255:7 {a} -> {b} -> {c:Nat} -> {d} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> {_ : d ~ VecScalar c Word} -> b -> d->b -testdata/Prelude.lc 255:11-255:22 {a} -> {b} -> {c:Nat} -> {d} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> {_ : d ~ VecScalar c Word} -> b -> d->b -testdata/Prelude.lc 256:1-256:7 {a} -> {b} -> {c:Nat} -> {d} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> {_ : d ~ VecScalar c Word} -> b -> d->b -testdata/Prelude.lc 256:11-256:22 {a} -> {b} -> {c:Nat} -> {d} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> {_ : d ~ VecScalar c Word} -> b -> d->b -testdata/Prelude.lc 257:1-257:8 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> Word->b -testdata/Prelude.lc 257:11-257:23 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> Word->b -testdata/Prelude.lc 258:1-258:8 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> Word->b -testdata/Prelude.lc 258:11-258:23 {a} -> {b} -> {c:Nat} -> {_ : Integral a} -> {_ : b ~ VecScalar c a} -> b -> Word->b -testdata/Prelude.lc 260:1-260:15 {a:Nat} -> VecScalar a Float -> VecScalar a Int -testdata/Prelude.lc 260:19-260:37 {a:Nat} -> VecScalar a Float -> VecScalar a Int -testdata/Prelude.lc 261:1-261:16 {a:Nat} -> VecScalar a Float -> VecScalar a Word -testdata/Prelude.lc 261:19-261:38 {a:Nat} -> VecScalar a Float -> VecScalar a Word -testdata/Prelude.lc 262:1-262:15 {a:Nat} -> VecScalar a Int -> VecScalar a Float -testdata/Prelude.lc 262:19-262:37 {a:Nat} -> VecScalar a Int -> VecScalar a Float -testdata/Prelude.lc 263:1-263:16 {a:Nat} -> VecScalar a Word -> VecScalar a Float -testdata/Prelude.lc 263:19-263:38 {a:Nat} -> VecScalar a Word -> VecScalar a Float -testdata/Prelude.lc 281:3-281:4 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 281:9-281:16 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 281:9-281:18 e_->e_ -testdata/Prelude.lc 281:9-281:20 d_ -testdata/Prelude.lc 281:17-281:18 f_ -testdata/Prelude.lc 281:19-281:20 c_ -testdata/Prelude.lc 282:3-282:4 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 282:9-282:16 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 282:9-282:18 e_->e_ -testdata/Prelude.lc 282:9-282:20 d_ -testdata/Prelude.lc 282:17-282:18 f_ -testdata/Prelude.lc 282:19-282:20 c_ -testdata/Prelude.lc 283:3-283:4 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 283:9-283:16 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 283:9-283:18 e_->e_ -testdata/Prelude.lc 283:9-283:20 d_ -testdata/Prelude.lc 283:17-283:18 f_ -testdata/Prelude.lc 283:19-283:20 c_ -testdata/Prelude.lc 284:3-284:4 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a -testdata/Prelude.lc 284:9-284:16 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 284:9-284:18 VecScalar b_ c_ -> VecScalar b_ c_ -testdata/Prelude.lc 284:9-284:20 VecScalar b_ c_ -testdata/Prelude.lc 284:17-284:18 g_ -testdata/Prelude.lc 284:19-284:20 e_ -testdata/Prelude.lc 285:3-285:4 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a -testdata/Prelude.lc 285:9-285:16 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> b->b -testdata/Prelude.lc 285:9-285:18 VecScalar b_ c_ -> VecScalar b_ c_ -testdata/Prelude.lc 285:9-285:20 VecScalar b_ c_ -testdata/Prelude.lc 285:17-285:18 g_ -testdata/Prelude.lc 285:19-285:20 e_ -testdata/Prelude.lc 287:1-287:4 {a} -> {_ : Signed (MatVecScalarElem a)} -> a->a -testdata/Prelude.lc 287:9-287:16 {a} -> {_ : Signed (MatVecScalarElem a)} -> a->a -testdata/Prelude.lc 287:9-287:18 c_ -testdata/Prelude.lc 287:17-287:18 d_ -testdata/Prelude.lc 291:3-291:5 {a} -> a -> a->Bool -testdata/Prelude.lc 291:10-291:22 {a} -> {b} -> {_ : b ~ MatVecScalarElem a} -> a -> a->Bool -testdata/Prelude.lc 291:10-291:24 d_->Bool +testdata/Prelude.lc 167:29-167:30 _b +testdata/Prelude.lc 174:1-174:8 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 174:11-174:22 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 175:1-175:8 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 175:11-175:22 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 176:1-176:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 176:7-176:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 177:1-177:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 177:7-177:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 178:1-178:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 178:7-178:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 179:1-179:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 179:8-179:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 180:1-180:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 180:8-180:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 181:1-181:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 181:8-181:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 182:1-182:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 182:8-182:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 183:1-183:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 183:9-183:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 184:1-184:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 184:8-184:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 185:1-185:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 185:9-185:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 186:1-186:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 186:8-186:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 187:1-187:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 187:9-187:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 188:1-188:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 188:9-188:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 191:1-191:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 191:7-191:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 192:1-192:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 192:7-192:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 193:1-193:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 193:7-193:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 194:1-194:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 194:8-194:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 195:1-195:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 195:8-195:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 196:1-196:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 196:8-196:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 197:1-197:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 197:15-197:26 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 200:1-200:4 forall a b (c :: Nat) . (Signed a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 200:7-200:14 forall a b (c :: Nat) . (Signed a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 201:1-201:5 forall a b (c :: Nat) . (Signed a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 201:8-201:16 forall a b (c :: Nat) . (Signed a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 202:1-202:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 202:9-202:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 203:1-203:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 203:9-203:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 204:1-204:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 204:9-204:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 205:1-205:10 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 205:13-205:26 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 206:1-206:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 206:8-206:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 207:1-207:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 207:9-207:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 208:1-208:4 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 208:7-208:14 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 209:1-209:4 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 209:7-209:14 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 210:1-210:4 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 210:7-210:14 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 211:1-211:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> (a, a) +testdata/Prelude.lc 211:8-211:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> (a, a) +testdata/Prelude.lc 212:1-212:6 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b -> b +testdata/Prelude.lc 212:9-212:18 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b -> b +testdata/Prelude.lc 213:1-213:7 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> a -> a -> b +testdata/Prelude.lc 213:10-213:20 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> a -> a -> b +testdata/Prelude.lc 214:1-214:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 214:7-214:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 215:1-215:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float -> a +testdata/Prelude.lc 215:8-215:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float -> a +testdata/Prelude.lc 216:1-216:5 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> a -> c -> a +testdata/Prelude.lc 216:8-216:16 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> a -> c -> a +testdata/Prelude.lc 217:1-217:5 forall a (b :: Nat) . (a ~ VecS Float b) => a -> a -> a +testdata/Prelude.lc 217:8-217:16 forall a (b :: Nat) . (a ~ VecS Float b) => a -> a -> a +testdata/Prelude.lc 218:1-218:6 forall a (b :: Nat) . (a ~ VecScalar b Float) => Float -> a -> a +testdata/Prelude.lc 218:9-218:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => Float -> a -> a +testdata/Prelude.lc 219:1-219:11 forall a (b :: Nat) . (a ~ VecS Float b) => a -> a -> a -> a +testdata/Prelude.lc 219:14-219:28 forall a (b :: Nat) . (a ~ VecS Float b) => a -> a -> a -> a +testdata/Prelude.lc 220:1-220:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => Float -> Float -> a -> a +testdata/Prelude.lc 220:15-220:30 forall a (b :: Nat) . (a ~ VecScalar b Float) => Float -> Float -> a -> a +testdata/Prelude.lc 221:1-221:6 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> c +testdata/Prelude.lc 221:9-221:18 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> c +testdata/Prelude.lc 222:1-222:6 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> c +testdata/Prelude.lc 222:9-222:18 forall a (b :: Nat) c . (a ~ VecScalar b Float, c ~ VecScalar b Bool) => a -> c +testdata/Prelude.lc 224:1-224:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 224:8-224:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 225:1-225:5 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 225:8-225:16 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 226:1-226:7 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 226:10-226:20 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 228:1-228:7 forall (a :: Nat) . VecScalar a Float -> Float +testdata/Prelude.lc 228:10-228:20 forall (a :: Nat) . VecScalar a Float -> Float +testdata/Prelude.lc 229:1-229:7 forall (a :: Nat) . VecScalar a Float -> Vec 2 Float +testdata/Prelude.lc 229:10-229:20 forall (a :: Nat) . VecScalar a Float -> Vec 2 Float +testdata/Prelude.lc 230:1-230:7 forall (a :: Nat) . VecScalar a Float -> Vec 3 Float +testdata/Prelude.lc 230:10-230:20 forall (a :: Nat) . VecScalar a Float -> Vec 3 Float +testdata/Prelude.lc 231:1-231:7 forall (a :: Nat) . VecScalar a Float -> Vec 4 Float +testdata/Prelude.lc 231:10-231:20 forall (a :: Nat) . VecScalar a Float -> Vec 4 Float +testdata/Prelude.lc 234:1-234:7 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> Float +testdata/Prelude.lc 234:10-234:20 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> Float +testdata/Prelude.lc 235:1-235:9 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float +testdata/Prelude.lc 235:12-235:24 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float +testdata/Prelude.lc 236:1-236:4 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float +testdata/Prelude.lc 236:7-236:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> Float +testdata/Prelude.lc 237:1-237:6 forall a . (a ~ VecS Float 3) => a -> a -> a +testdata/Prelude.lc 237:9-237:18 forall a . (a ~ VecS Float 3) => a -> a -> a +testdata/Prelude.lc 238:1-238:10 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 238:13-238:26 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 239:1-239:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 239:15-239:30 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 240:1-240:8 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 240:11-240:22 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a +testdata/Prelude.lc 241:1-241:8 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 241:11-241:22 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a -> a -> a +testdata/Prelude.lc 243:1-243:10 forall (a :: Nat) (b :: Nat) c . Mat a b c -> Mat b a c +testdata/Prelude.lc 243:13-243:26 forall (a :: Nat) (b :: Nat) c . Mat a b c -> Mat b a c +testdata/Prelude.lc 244:1-244:4 forall (a :: Nat) b . Mat a a b -> Float +testdata/Prelude.lc 244:7-244:22 forall (a :: Nat) b . Mat a a b -> Float +testdata/Prelude.lc 245:1-245:4 forall (a :: Nat) b . Mat a a b -> Mat a a b +testdata/Prelude.lc 245:7-245:18 forall (a :: Nat) b . Mat a a b -> Mat a a b +testdata/Prelude.lc 246:1-246:6 forall (a :: Nat) b (c :: Nat) . Vec a b -> Vec c b -> Mat c a b +testdata/Prelude.lc 246:9-246:25 forall (a :: Nat) b (c :: Nat) . Vec a b -> Vec c b -> Mat c a b +testdata/Prelude.lc 248:1-248:5 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 248:11-248:19 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 249:1-249:4 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 249:11-249:18 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 250:1-250:5 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 250:11-250:19 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 251:1-251:5 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 251:11-251:19 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> b +testdata/Prelude.lc 252:1-252:6 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 252:11-252:20 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 253:1-253:5 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 253:11-253:19 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 254:1-254:6 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 254:11-254:20 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 255:1-255:7 forall a b (c :: Nat) d . (Integral a, b ~ VecScalar c a, d ~ VecScalar c Word) => b -> d -> b +testdata/Prelude.lc 255:11-255:22 forall a b (c :: Nat) d . (Integral a, b ~ VecScalar c a, d ~ VecScalar c Word) => b -> d -> b +testdata/Prelude.lc 256:1-256:7 forall a b (c :: Nat) d . (Integral a, b ~ VecScalar c a, d ~ VecScalar c Word) => b -> d -> b +testdata/Prelude.lc 256:11-256:22 forall a b (c :: Nat) d . (Integral a, b ~ VecScalar c a, d ~ VecScalar c Word) => b -> d -> b +testdata/Prelude.lc 257:1-257:8 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> Word -> b +testdata/Prelude.lc 257:11-257:23 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> Word -> b +testdata/Prelude.lc 258:1-258:8 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> Word -> b +testdata/Prelude.lc 258:11-258:23 forall a b (c :: Nat) . (Integral a, b ~ VecScalar c a) => b -> Word -> b +testdata/Prelude.lc 260:1-260:15 forall (a :: Nat) . VecScalar a Float -> VecScalar a Int +testdata/Prelude.lc 260:19-260:37 forall (a :: Nat) . VecScalar a Float -> VecScalar a Int +testdata/Prelude.lc 261:1-261:16 forall (a :: Nat) . VecScalar a Float -> VecScalar a Word +testdata/Prelude.lc 261:19-261:38 forall (a :: Nat) . VecScalar a Float -> VecScalar a Word +testdata/Prelude.lc 262:1-262:15 forall (a :: Nat) . VecScalar a Int -> VecScalar a Float +testdata/Prelude.lc 262:19-262:37 forall (a :: Nat) . VecScalar a Int -> VecScalar a Float +testdata/Prelude.lc 263:1-263:16 forall (a :: Nat) . VecScalar a Word -> VecScalar a Float +testdata/Prelude.lc 263:19-263:38 forall (a :: Nat) . VecScalar a Word -> VecScalar a Float +testdata/Prelude.lc 281:3-281:4 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 281:9-281:16 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 281:9-281:18 _e -> _e +testdata/Prelude.lc 281:9-281:20 _d +testdata/Prelude.lc 281:17-281:18 _f +testdata/Prelude.lc 281:19-281:20 _c +testdata/Prelude.lc 282:3-282:4 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 282:9-282:16 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 282:9-282:18 _e -> _e +testdata/Prelude.lc 282:9-282:20 _d +testdata/Prelude.lc 282:17-282:18 _f +testdata/Prelude.lc 282:19-282:20 _c +testdata/Prelude.lc 283:3-283:4 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 283:9-283:16 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 283:9-283:18 _e -> _e +testdata/Prelude.lc 283:9-283:20 _d +testdata/Prelude.lc 283:17-283:18 _f +testdata/Prelude.lc 283:19-283:20 _c +testdata/Prelude.lc 284:3-284:4 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 284:9-284:16 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 284:9-284:18 VecScalar _b _c -> VecScalar _b _c +testdata/Prelude.lc 284:9-284:20 VecScalar _b _c +testdata/Prelude.lc 284:17-284:18 _g +testdata/Prelude.lc 284:19-284:20 _e +testdata/Prelude.lc 285:3-285:4 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 285:9-285:16 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> b -> b +testdata/Prelude.lc 285:9-285:18 VecScalar _b _c -> VecScalar _b _c +testdata/Prelude.lc 285:9-285:20 VecScalar _b _c +testdata/Prelude.lc 285:17-285:18 _g +testdata/Prelude.lc 285:19-285:20 _e +testdata/Prelude.lc 287:1-287:4 forall a . Signed (MatVecScalarElem a) => a -> a +testdata/Prelude.lc 287:9-287:16 forall a . Signed (MatVecScalarElem a) => a -> a +testdata/Prelude.lc 287:9-287:18 _c +testdata/Prelude.lc 287:17-287:18 _d +testdata/Prelude.lc 291:3-291:5 forall a . a -> a -> Bool +testdata/Prelude.lc 291:10-291:22 forall a b . (b ~ MatVecScalarElem a) => a -> a -> Bool +testdata/Prelude.lc 291:10-291:24 _d -> Bool testdata/Prelude.lc 291:10-291:26 Bool -testdata/Prelude.lc 291:23-291:24 e_ -testdata/Prelude.lc 291:25-291:26 b_ -testdata/Prelude.lc 292:3-292:4 {a:Nat} -> {b} -> {_ : Num b} -> VecScalar a b -> VecScalar a b -> VecScalar a Bool -testdata/Prelude.lc 292:9-292:21 {a} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : a ~ VecScalar b c} -> {_ : d ~ VecScalar b Bool} -> a -> a->d -testdata/Prelude.lc 292:9-292:23 VecScalar c_ b_ -> VecScalar c_ Bool -testdata/Prelude.lc 292:9-292:25 VecScalar c_ Bool -testdata/Prelude.lc 292:22-292:23 g_ -testdata/Prelude.lc 292:24-292:25 e_ -testdata/Prelude.lc 293:3-293:5 {a:Nat} -> {b} -> {_ : Num b} -> VecScalar a b -> VecScalar a b -> VecScalar a Bool -testdata/Prelude.lc 293:10-293:27 {a} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : a ~ VecScalar b c} -> {_ : d ~ VecScalar b Bool} -> a -> a->d -testdata/Prelude.lc 293:10-293:29 VecScalar c_ b_ -> VecScalar c_ Bool -testdata/Prelude.lc 293:10-293:31 VecScalar c_ Bool -testdata/Prelude.lc 293:28-293:29 g_ -testdata/Prelude.lc 293:30-293:31 e_ -testdata/Prelude.lc 294:3-294:5 {a:Nat} -> {b} -> {_ : Num b} -> VecScalar a b -> VecScalar a b -> VecScalar a Bool -testdata/Prelude.lc 294:10-294:30 {a} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : a ~ VecScalar b c} -> {_ : d ~ VecScalar b Bool} -> a -> a->d -testdata/Prelude.lc 294:10-294:32 VecScalar c_ b_ -> VecScalar c_ Bool -testdata/Prelude.lc 294:10-294:34 VecScalar c_ Bool -testdata/Prelude.lc 294:31-294:32 g_ -testdata/Prelude.lc 294:33-294:34 e_ -testdata/Prelude.lc 295:3-295:4 {a:Nat} -> {b} -> {_ : Num b} -> VecScalar a b -> VecScalar a b -> VecScalar a Bool -testdata/Prelude.lc 295:9-295:24 {a} -> {b:Nat} -> {c} -> {d} -> {_ : Num c} -> {_ : a ~ VecScalar b c} -> {_ : d ~ VecScalar b Bool} -> a -> a->d -testdata/Prelude.lc 295:9-295:26 VecScalar c_ b_ -> VecScalar c_ Bool -testdata/Prelude.lc 295:9-295:28 VecScalar c_ Bool -testdata/Prelude.lc 295:25-295:26 g_ -testdata/Prelude.lc 295:27-295:28 e_ -testdata/Prelude.lc 298:3-298:5 Bool -> Bool->Bool -testdata/Prelude.lc 298:10-298:17 Bool -> Bool->Bool -testdata/Prelude.lc 298:10-298:19 Bool->Bool +testdata/Prelude.lc 291:23-291:24 _e +testdata/Prelude.lc 291:25-291:26 _b +testdata/Prelude.lc 292:3-292:4 forall (a :: Nat) b . Num b => VecScalar a b -> VecScalar a b -> VecScalar a Bool +testdata/Prelude.lc 292:9-292:21 forall a (b :: Nat) c d . (Num c, a ~ VecScalar b c, d ~ VecScalar b Bool) => a -> a -> d +testdata/Prelude.lc 292:9-292:23 VecScalar _c _b -> VecScalar _c Bool +testdata/Prelude.lc 292:9-292:25 VecScalar _c Bool +testdata/Prelude.lc 292:22-292:23 _g +testdata/Prelude.lc 292:24-292:25 _e +testdata/Prelude.lc 293:3-293:5 forall (a :: Nat) b . Num b => VecScalar a b -> VecScalar a b -> VecScalar a Bool +testdata/Prelude.lc 293:10-293:27 forall a (b :: Nat) c d . (Num c, a ~ VecScalar b c, d ~ VecScalar b Bool) => a -> a -> d +testdata/Prelude.lc 293:10-293:29 VecScalar _c _b -> VecScalar _c Bool +testdata/Prelude.lc 293:10-293:31 VecScalar _c Bool +testdata/Prelude.lc 293:28-293:29 _g +testdata/Prelude.lc 293:30-293:31 _e +testdata/Prelude.lc 294:3-294:5 forall (a :: Nat) b . Num b => VecScalar a b -> VecScalar a b -> VecScalar a Bool +testdata/Prelude.lc 294:10-294:30 forall a (b :: Nat) c d . (Num c, a ~ VecScalar b c, d ~ VecScalar b Bool) => a -> a -> d +testdata/Prelude.lc 294:10-294:32 VecScalar _c _b -> VecScalar _c Bool +testdata/Prelude.lc 294:10-294:34 VecScalar _c Bool +testdata/Prelude.lc 294:31-294:32 _g +testdata/Prelude.lc 294:33-294:34 _e +testdata/Prelude.lc 295:3-295:4 forall (a :: Nat) b . Num b => VecScalar a b -> VecScalar a b -> VecScalar a Bool +testdata/Prelude.lc 295:9-295:24 forall a (b :: Nat) c d . (Num c, a ~ VecScalar b c, d ~ VecScalar b Bool) => a -> a -> d +testdata/Prelude.lc 295:9-295:26 VecScalar _c _b -> VecScalar _c Bool +testdata/Prelude.lc 295:9-295:28 VecScalar _c Bool +testdata/Prelude.lc 295:25-295:26 _g +testdata/Prelude.lc 295:27-295:28 _e +testdata/Prelude.lc 298:3-298:5 Bool -> Bool -> Bool +testdata/Prelude.lc 298:10-298:17 Bool -> Bool -> Bool +testdata/Prelude.lc 298:10-298:19 Bool -> Bool testdata/Prelude.lc 298:10-298:21 Bool -testdata/Prelude.lc 298:18-298:19 d_ -testdata/Prelude.lc 298:20-298:21 b_ -testdata/Prelude.lc 299:3-299:5 Bool -> Bool->Bool -testdata/Prelude.lc 299:10-299:16 Bool -> Bool->Bool -testdata/Prelude.lc 299:10-299:18 Bool->Bool +testdata/Prelude.lc 298:18-298:19 _d +testdata/Prelude.lc 298:20-298:21 _b +testdata/Prelude.lc 299:3-299:5 Bool -> Bool -> Bool +testdata/Prelude.lc 299:10-299:16 Bool -> Bool -> Bool +testdata/Prelude.lc 299:10-299:18 Bool -> Bool testdata/Prelude.lc 299:10-299:20 Bool -testdata/Prelude.lc 299:17-299:18 d_ -testdata/Prelude.lc 299:19-299:20 b_ -testdata/Prelude.lc 300:1-300:4 Bool -> Bool->Bool -testdata/Prelude.lc 300:7-300:14 Bool -> Bool->Bool -testdata/Prelude.lc 301:1-301:4 {a:Nat} -> VecScalar a Bool -> VecScalar a Bool -testdata/Prelude.lc 301:9-301:16 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Bool} -> a->a -testdata/Prelude.lc 301:9-301:18 VecScalar a_ Bool -testdata/Prelude.lc 301:17-301:18 c_ -testdata/Prelude.lc 302:1-302:4 {a:Nat} -> VecScalar a Bool -> Bool -testdata/Prelude.lc 302:9-302:16 {a:Nat} -> VecScalar a Bool -> Bool +testdata/Prelude.lc 299:17-299:18 _d +testdata/Prelude.lc 299:19-299:20 _b +testdata/Prelude.lc 300:1-300:4 Bool -> Bool -> Bool +testdata/Prelude.lc 300:7-300:14 Bool -> Bool -> Bool +testdata/Prelude.lc 301:1-301:4 forall (a :: Nat) . VecScalar a Bool -> VecScalar a Bool +testdata/Prelude.lc 301:9-301:16 forall a (b :: Nat) . (a ~ VecScalar b Bool) => a -> a +testdata/Prelude.lc 301:9-301:18 VecScalar _a Bool +testdata/Prelude.lc 301:17-301:18 _c +testdata/Prelude.lc 302:1-302:4 forall (a :: Nat) . VecScalar a Bool -> Bool +testdata/Prelude.lc 302:9-302:16 forall (a :: Nat) . VecScalar a Bool -> Bool testdata/Prelude.lc 302:9-302:18 Bool -testdata/Prelude.lc 302:17-302:18 c_ -testdata/Prelude.lc 303:1-303:4 {a:Nat} -> VecScalar a Bool -> Bool -testdata/Prelude.lc 303:9-303:16 {a:Nat} -> VecScalar a Bool -> Bool +testdata/Prelude.lc 302:17-302:18 _c +testdata/Prelude.lc 303:1-303:4 forall (a :: Nat) . VecScalar a Bool -> Bool +testdata/Prelude.lc 303:9-303:16 forall (a :: Nat) . VecScalar a Bool -> Bool testdata/Prelude.lc 303:9-303:18 Bool -testdata/Prelude.lc 303:17-303:18 c_ -testdata/Prelude.lc 306:3-306:6 {a:Nat} -> {b:Nat} -> {c} -> {d:Nat} -> Mat a b c -> Mat b d c -> Mat a d c -testdata/Prelude.lc 306:11-306:24 {a:Nat} -> {b:Nat} -> {c} -> {d:Nat} -> Mat a b c -> Mat b d c -> Mat a d c -testdata/Prelude.lc 306:11-306:26 Mat c_ a_ b_ -> Mat d_ a_ b_ -testdata/Prelude.lc 306:11-306:28 Mat d_ a_ b_ -testdata/Prelude.lc 306:25-306:26 h_ -testdata/Prelude.lc 306:27-306:28 f_ -testdata/Prelude.lc 307:3-307:5 {a:Nat} -> {b:Nat} -> {c} -> Mat a b c -> VecS c b -> Vec a c -testdata/Prelude.lc 307:10-307:23 {a:Nat} -> {b:Nat} -> {c} -> Mat a b c -> Vec b c -> Vec a c -testdata/Prelude.lc 307:10-307:25 Vec b_ a_ -> Vec c_ a_ -testdata/Prelude.lc 307:10-307:27 Vec c_ a_ -testdata/Prelude.lc 307:24-307:25 g_ -testdata/Prelude.lc 307:26-307:27 e_ -testdata/Prelude.lc 308:3-308:5 {a:Nat} -> {b} -> {c:Nat} -> VecS b a -> Mat a c b -> Vec c b -testdata/Prelude.lc 308:10-308:23 {a:Nat} -> {b} -> {c:Nat} -> Vec a b -> Mat a c b -> Vec c b -testdata/Prelude.lc 308:10-308:25 Mat c_ a_ b_ -> Vec a_ b_ -testdata/Prelude.lc 308:10-308:27 Vec a_ b_ -testdata/Prelude.lc 308:24-308:25 g_ -testdata/Prelude.lc 308:26-308:27 e_ -testdata/Prelude.lc 315:3-315:5 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> MatVecScalarElem a -> a -testdata/Prelude.lc 315:10-315:18 {a} -> {b} -> {_ : a ~ MatVecScalarElem b} -> {_ : Num a} -> b -> a->b -testdata/Prelude.lc 315:10-315:20 MatVecScalarElem e_ -> e_ -testdata/Prelude.lc 315:10-315:22 d_ -testdata/Prelude.lc 315:19-315:20 f_ -testdata/Prelude.lc 315:21-315:22 c_ -testdata/Prelude.lc 316:3-316:5 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> MatVecScalarElem a -> a -testdata/Prelude.lc 316:10-316:18 {a} -> {b} -> {_ : a ~ MatVecScalarElem b} -> {_ : Num a} -> b -> a->b -testdata/Prelude.lc 316:10-316:20 MatVecScalarElem e_ -> e_ -testdata/Prelude.lc 316:10-316:22 d_ -testdata/Prelude.lc 316:19-316:20 f_ -testdata/Prelude.lc 316:21-316:22 c_ -testdata/Prelude.lc 317:3-317:5 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> MatVecScalarElem a -> a -testdata/Prelude.lc 317:10-317:18 {a} -> {b} -> {_ : a ~ MatVecScalarElem b} -> {_ : Num a} -> b -> a->b -testdata/Prelude.lc 317:10-317:20 MatVecScalarElem e_ -> e_ -testdata/Prelude.lc 317:10-317:22 d_ -testdata/Prelude.lc 317:19-317:20 f_ -testdata/Prelude.lc 317:21-317:22 c_ -testdata/Prelude.lc 318:3-318:5 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> a -> VecScalar b a -testdata/Prelude.lc 318:10-318:18 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 318:10-318:20 c_ -> VecScalar b_ c_ -testdata/Prelude.lc 318:10-318:22 VecScalar b_ d_ -testdata/Prelude.lc 318:19-318:20 g_ -testdata/Prelude.lc 318:21-318:22 e_ -testdata/Prelude.lc 319:3-319:5 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> a -> VecScalar b a -testdata/Prelude.lc 319:10-319:18 {a} -> {b} -> {c:Nat} -> {_ : Num a} -> {_ : b ~ VecScalar c a} -> b -> a->b -testdata/Prelude.lc 319:10-319:20 c_ -> VecScalar b_ c_ -testdata/Prelude.lc 319:10-319:22 VecScalar b_ d_ -testdata/Prelude.lc 319:19-319:20 g_ -testdata/Prelude.lc 319:21-319:22 e_ +testdata/Prelude.lc 303:17-303:18 _c +testdata/Prelude.lc 306:3-306:6 forall (a :: Nat) (b :: Nat) c (d :: Nat) . Mat a b c -> Mat b d c -> Mat a d c +testdata/Prelude.lc 306:11-306:24 forall (a :: Nat) (b :: Nat) c (d :: Nat) . Mat a b c -> Mat b d c -> Mat a d c +testdata/Prelude.lc 306:11-306:26 Mat _c _a _b -> Mat _d _a _b +testdata/Prelude.lc 306:11-306:28 Mat _d _a _b +testdata/Prelude.lc 306:25-306:26 _h +testdata/Prelude.lc 306:27-306:28 _f +testdata/Prelude.lc 307:3-307:5 forall (a :: Nat) (b :: Nat) c . Mat a b c -> VecS c b -> Vec a c +testdata/Prelude.lc 307:10-307:23 forall (a :: Nat) (b :: Nat) c . Mat a b c -> Vec b c -> Vec a c +testdata/Prelude.lc 307:10-307:25 Vec _b _a -> Vec _c _a +testdata/Prelude.lc 307:10-307:27 Vec _c _a +testdata/Prelude.lc 307:24-307:25 _g +testdata/Prelude.lc 307:26-307:27 _e +testdata/Prelude.lc 308:3-308:5 forall (a :: Nat) b (c :: Nat) . VecS b a -> Mat a c b -> Vec c b +testdata/Prelude.lc 308:10-308:23 forall (a :: Nat) b (c :: Nat) . Vec a b -> Mat a c b -> Vec c b +testdata/Prelude.lc 308:10-308:25 Mat _c _a _b -> Vec _a _b +testdata/Prelude.lc 308:10-308:27 Vec _a _b +testdata/Prelude.lc 308:24-308:25 _g +testdata/Prelude.lc 308:26-308:27 _e +testdata/Prelude.lc 315:3-315:5 forall a . Num (MatVecScalarElem a) => a -> MatVecScalarElem a -> a +testdata/Prelude.lc 315:10-315:18 forall a b . (a ~ MatVecScalarElem b, Num a) => b -> a -> b +testdata/Prelude.lc 315:10-315:20 MatVecScalarElem _e -> _e +testdata/Prelude.lc 315:10-315:22 _d +testdata/Prelude.lc 315:19-315:20 _f +testdata/Prelude.lc 315:21-315:22 _c +testdata/Prelude.lc 316:3-316:5 forall a . Num (MatVecScalarElem a) => a -> MatVecScalarElem a -> a +testdata/Prelude.lc 316:10-316:18 forall a b . (a ~ MatVecScalarElem b, Num a) => b -> a -> b +testdata/Prelude.lc 316:10-316:20 MatVecScalarElem _e -> _e +testdata/Prelude.lc 316:10-316:22 _d +testdata/Prelude.lc 316:19-316:20 _f +testdata/Prelude.lc 316:21-316:22 _c +testdata/Prelude.lc 317:3-317:5 forall a . Num (MatVecScalarElem a) => a -> MatVecScalarElem a -> a +testdata/Prelude.lc 317:10-317:18 forall a b . (a ~ MatVecScalarElem b, Num a) => b -> a -> b +testdata/Prelude.lc 317:10-317:20 MatVecScalarElem _e -> _e +testdata/Prelude.lc 317:10-317:22 _d +testdata/Prelude.lc 317:19-317:20 _f +testdata/Prelude.lc 317:21-317:22 _c +testdata/Prelude.lc 318:3-318:5 forall a (b :: Nat) . Num a => VecScalar b a -> a -> VecScalar b a +testdata/Prelude.lc 318:10-318:18 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 318:10-318:20 _c -> VecScalar _b _c +testdata/Prelude.lc 318:10-318:22 VecScalar _b _d +testdata/Prelude.lc 318:19-318:20 _g +testdata/Prelude.lc 318:21-318:22 _e +testdata/Prelude.lc 319:3-319:5 forall a (b :: Nat) . Num a => VecScalar b a -> a -> VecScalar b a +testdata/Prelude.lc 319:10-319:18 forall a b (c :: Nat) . (Num a, b ~ VecScalar c a) => b -> a -> b +testdata/Prelude.lc 319:10-319:20 _c -> VecScalar _b _c +testdata/Prelude.lc 319:10-319:22 VecScalar _b _d +testdata/Prelude.lc 319:19-319:20 _g +testdata/Prelude.lc 319:21-319:22 _e testdata/Prelude.lc 326:16-326:21 Type testdata/Prelude.lc 327:16-327:21 Type testdata/Prelude.lc 327:16-330:29 Type @@ -1049,12 +1049,12 @@ testdata/Prelude.lc 328:16-328:21 Type testdata/Prelude.lc 328:16-330:29 Type testdata/Prelude.lc 329:16-329:21 Type testdata/Prelude.lc 329:16-330:29 Type -testdata/Prelude.lc 330:16-330:19 Nat -> Nat -> Type->Type -testdata/Prelude.lc 330:16-330:21 Nat -> Type->Type -testdata/Prelude.lc 330:16-330:23 Type->Type +testdata/Prelude.lc 330:16-330:19 Nat -> Nat -> Type -> Type +testdata/Prelude.lc 330:16-330:21 Nat -> Type -> Type +testdata/Prelude.lc 330:16-330:23 Type -> Type testdata/Prelude.lc 330:16-330:29 Type -testdata/Prelude.lc 330:20-330:21 b_ -testdata/Prelude.lc 330:22-330:23 b_ +testdata/Prelude.lc 330:20-330:21 _b +testdata/Prelude.lc 330:22-330:23 _b testdata/Prelude.lc 330:24-330:29 Type testdata/Prelude.lc 331:1-331:12 Float -> Float -> Float -> Float -> Mat 4 4 Float testdata/Prelude.lc 332:5-332:9 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float @@ -1063,49 +1063,49 @@ testdata/Prelude.lc 332:5-333:59 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 332:5-334:62 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 332:5-335:59 Mat 4 4 Float testdata/Prelude.lc 332:5-340:11 Float -> Float -> Float -> Float -> Mat 4 4 Float | Float -> Float -> Float -> Mat 4 4 Float | Float -> Float -> Mat 4 4 Float | Float -> Mat 4 4 Float -testdata/Prelude.lc 332:11-332:13 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 332:11-332:13 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 332:11-332:25 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 332:11-332:29 Float -> Float -> VecS Float 4 testdata/Prelude.lc 332:11-332:43 Float -> VecS Float 4 testdata/Prelude.lc 332:11-332:58 VecS Float 4 -testdata/Prelude.lc 332:15-332:16 b_ -testdata/Prelude.lc 332:15-332:17 c_->c_ +testdata/Prelude.lc 332:15-332:16 _b +testdata/Prelude.lc 332:15-332:17 _c -> _c testdata/Prelude.lc 332:15-332:18 VecScalar 1 Float testdata/Prelude.lc 332:15-332:19 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 332:15-332:24 VecScalar 1 Float -testdata/Prelude.lc 332:16-332:17 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 332:16-332:17 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 332:17-332:18 Float -testdata/Prelude.lc 332:18-332:19 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 332:18-332:19 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 332:20-332:21 Float -testdata/Prelude.lc 332:20-332:22 Float->Float +testdata/Prelude.lc 332:20-332:22 Float -> Float testdata/Prelude.lc 332:20-332:23 Float -testdata/Prelude.lc 332:21-332:22 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 332:21-332:22 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 332:22-332:23 Float -testdata/Prelude.lc 332:28-332:29 b_ -testdata/Prelude.lc 332:42-332:43 b_ -testdata/Prelude.lc 332:57-332:58 b_ -testdata/Prelude.lc 333:11-333:13 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 333:11-333:15 b_ -> b_ -> b_ -> VecS b_ 4 +testdata/Prelude.lc 332:28-332:29 _b +testdata/Prelude.lc 332:42-332:43 _b +testdata/Prelude.lc 332:57-332:58 _b +testdata/Prelude.lc 333:11-333:13 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 333:11-333:15 _b -> _b -> _b -> VecS _b 4 testdata/Prelude.lc 333:11-333:39 Float -> Float -> VecS Float 4 testdata/Prelude.lc 333:11-333:43 Float -> VecS Float 4 testdata/Prelude.lc 333:11-333:58 VecS Float 4 -testdata/Prelude.lc 333:14-333:15 b_ -testdata/Prelude.lc 333:29-333:30 b_ -testdata/Prelude.lc 333:29-333:31 c_->c_ +testdata/Prelude.lc 333:14-333:15 _b +testdata/Prelude.lc 333:29-333:30 _b +testdata/Prelude.lc 333:29-333:31 _c -> _c testdata/Prelude.lc 333:29-333:32 VecScalar 1 Float testdata/Prelude.lc 333:29-333:33 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 333:29-333:38 VecScalar 1 Float -testdata/Prelude.lc 333:30-333:31 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 333:30-333:31 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 333:31-333:32 Float -testdata/Prelude.lc 333:32-333:33 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 333:32-333:33 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 333:34-333:35 Float -testdata/Prelude.lc 333:34-333:36 Float->Float +testdata/Prelude.lc 333:34-333:36 Float -> Float testdata/Prelude.lc 333:34-333:37 Float -testdata/Prelude.lc 333:35-333:36 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 333:35-333:36 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 333:36-333:37 Float -testdata/Prelude.lc 333:42-333:43 b_ -testdata/Prelude.lc 333:57-333:58 b_ -testdata/Prelude.lc 334:11-334:13 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 333:42-333:43 _b +testdata/Prelude.lc 333:57-333:58 _b +testdata/Prelude.lc 334:11-334:13 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 334:11-334:27 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 334:11-334:41 Float -> Float -> VecS Float 4 testdata/Prelude.lc 334:11-334:56 Float -> VecS Float 4 @@ -1113,94 +1113,94 @@ testdata/Prelude.lc 334:11-334:61 VecS Float 4 testdata/Prelude.lc 334:15-334:21 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 334:15-334:26 VecScalar 1 Float testdata/Prelude.lc 334:16-334:17 Float -testdata/Prelude.lc 334:16-334:18 Float->Float +testdata/Prelude.lc 334:16-334:18 Float -> Float testdata/Prelude.lc 334:16-334:19 Float -testdata/Prelude.lc 334:17-334:18 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:17-334:18 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:18-334:19 Float -testdata/Prelude.lc 334:20-334:21 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 334:20-334:21 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 334:22-334:23 Float -testdata/Prelude.lc 334:22-334:24 Float->Float +testdata/Prelude.lc 334:22-334:24 Float -> Float testdata/Prelude.lc 334:22-334:25 Float -testdata/Prelude.lc 334:23-334:24 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:23-334:24 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:24-334:25 Float testdata/Prelude.lc 334:29-334:35 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 334:29-334:40 VecScalar 1 Float testdata/Prelude.lc 334:30-334:31 Float -testdata/Prelude.lc 334:30-334:32 Float->Float +testdata/Prelude.lc 334:30-334:32 Float -> Float testdata/Prelude.lc 334:30-334:33 Float -testdata/Prelude.lc 334:31-334:32 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:31-334:32 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:32-334:33 Float -testdata/Prelude.lc 334:34-334:35 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 334:34-334:35 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 334:36-334:37 Float -testdata/Prelude.lc 334:36-334:38 Float->Float +testdata/Prelude.lc 334:36-334:38 Float -> Float testdata/Prelude.lc 334:36-334:39 Float -testdata/Prelude.lc 334:37-334:38 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:37-334:38 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:38-334:39 Float -testdata/Prelude.lc 334:43-334:44 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:43-334:44 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:43-334:55 Float testdata/Prelude.lc 334:44-334:50 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 334:44-334:55 VecScalar 1 Float testdata/Prelude.lc 334:45-334:46 Float -testdata/Prelude.lc 334:45-334:47 Float->Float +testdata/Prelude.lc 334:45-334:47 Float -> Float testdata/Prelude.lc 334:45-334:48 Float -testdata/Prelude.lc 334:46-334:47 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:46-334:47 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:47-334:48 Float -testdata/Prelude.lc 334:49-334:50 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 334:49-334:50 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 334:51-334:52 Float -testdata/Prelude.lc 334:51-334:53 Float->Float +testdata/Prelude.lc 334:51-334:53 Float -> Float testdata/Prelude.lc 334:51-334:54 Float -testdata/Prelude.lc 334:52-334:53 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:52-334:53 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:53-334:54 Float -testdata/Prelude.lc 334:58-334:59 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 334:58-334:59 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 334:58-334:60 Float -testdata/Prelude.lc 334:59-334:60 b_ -testdata/Prelude.lc 335:11-335:13 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 335:11-335:15 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 335:11-335:29 c_ -> c_ -> VecS c_ 4 +testdata/Prelude.lc 334:59-334:60 _b +testdata/Prelude.lc 335:11-335:13 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 335:11-335:15 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 335:11-335:29 _c -> _c -> VecS _c 4 testdata/Prelude.lc 335:11-335:56 Float -> VecS Float 4 testdata/Prelude.lc 335:11-335:58 VecS Float 4 -testdata/Prelude.lc 335:14-335:15 b_ -testdata/Prelude.lc 335:28-335:29 b_ -testdata/Prelude.lc 335:43-335:44 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 335:14-335:15 _b +testdata/Prelude.lc 335:28-335:29 _b +testdata/Prelude.lc 335:43-335:44 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 335:43-335:55 Float -testdata/Prelude.lc 335:44-335:45 b_ -testdata/Prelude.lc 335:44-335:46 c_->c_ +testdata/Prelude.lc 335:44-335:45 _b +testdata/Prelude.lc 335:44-335:46 _c -> _c testdata/Prelude.lc 335:44-335:47 Float -testdata/Prelude.lc 335:44-335:48 Float->Float +testdata/Prelude.lc 335:44-335:48 Float -> Float testdata/Prelude.lc 335:44-335:49 Float testdata/Prelude.lc 335:44-335:50 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 335:44-335:55 VecScalar 1 Float -testdata/Prelude.lc 335:45-335:46 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 335:45-335:46 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 335:46-335:47 Float -testdata/Prelude.lc 335:47-335:48 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 335:47-335:48 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 335:48-335:49 Float -testdata/Prelude.lc 335:49-335:50 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 335:49-335:50 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a testdata/Prelude.lc 335:51-335:52 Float -testdata/Prelude.lc 335:51-335:53 Float->Float +testdata/Prelude.lc 335:51-335:53 Float -> Float testdata/Prelude.lc 335:51-335:54 Float -testdata/Prelude.lc 335:52-335:53 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 335:52-335:53 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 335:53-335:54 Float -testdata/Prelude.lc 335:57-335:58 b_ +testdata/Prelude.lc 335:57-335:58 _b testdata/Prelude.lc 337:9-337:10 Float -testdata/Prelude.lc 337:9-337:11 Float->Float +testdata/Prelude.lc 337:9-337:11 Float -> Float testdata/Prelude.lc 337:9-337:22 Float -testdata/Prelude.lc 337:10-337:11 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 337:11-337:14 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a +testdata/Prelude.lc 337:10-337:11 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 337:11-337:14 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a testdata/Prelude.lc 337:11-337:22 VecScalar 1 Float testdata/Prelude.lc 337:15-337:19 Float testdata/Prelude.lc 337:15-337:20 VecScalar 1 Float -> VecScalar 1 Float testdata/Prelude.lc 337:15-337:21 VecScalar 1 Float -testdata/Prelude.lc 337:19-337:20 {a} -> {b:Nat} -> {_ : Num a} -> VecScalar b a -> VecScalar b a -> VecScalar b a -testdata/Prelude.lc 337:20-337:21 b_ -testdata/Prelude.lc 338:9-338:10 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 337:19-337:20 forall a (b :: Nat) . Num a => VecScalar b a -> VecScalar b a -> VecScalar b a +testdata/Prelude.lc 337:20-337:21 _b +testdata/Prelude.lc 338:9-338:10 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 338:9-338:11 Float testdata/Prelude.lc 338:10-338:11 Float testdata/Prelude.lc 339:9-339:15 Float -testdata/Prelude.lc 339:9-339:16 Float->Float +testdata/Prelude.lc 339:9-339:16 Float -> Float testdata/Prelude.lc 339:9-339:17 Float -testdata/Prelude.lc 339:15-339:16 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 339:15-339:16 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 339:16-339:17 Float -testdata/Prelude.lc 340:9-340:10 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 340:9-340:10 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 340:9-340:11 Float testdata/Prelude.lc 340:10-340:11 Float testdata/Prelude.lc 342:1-342:11 VecScalar 1 Float -> Mat 4 4 Float @@ -1209,177 +1209,177 @@ testdata/Prelude.lc 342:16-342:33 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> testdata/Prelude.lc 342:16-342:49 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 342:16-342:62 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 342:16-342:75 Mat 4 4 Float -testdata/Prelude.lc 342:22-342:24 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 342:22-342:26 VecScalar c_ Float -> VecScalar c_ Float -> VecScalar c_ Float -> VecS (VecScalar c_ Float) 4 -testdata/Prelude.lc 342:22-342:28 VecScalar c_ Float -> VecScalar c_ Float -> VecS (VecScalar c_ Float) 4 -testdata/Prelude.lc 342:22-342:30 VecScalar d_ Float -> VecS (VecScalar d_ Float) 4 +testdata/Prelude.lc 342:22-342:24 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 342:22-342:26 VecScalar _c Float -> VecScalar _c Float -> VecScalar _c Float -> VecS (VecScalar _c Float) 4 +testdata/Prelude.lc 342:22-342:28 VecScalar _c Float -> VecScalar _c Float -> VecS (VecScalar _c Float) 4 +testdata/Prelude.lc 342:22-342:30 VecScalar _d Float -> VecS (VecScalar _d Float) 4 testdata/Prelude.lc 342:22-342:32 VecS (VecScalar 1 Float) 4 -testdata/Prelude.lc 342:25-342:26 VecScalar d_ Float -testdata/Prelude.lc 342:27-342:28 VecScalar c_ Float -testdata/Prelude.lc 342:29-342:30 b_ -testdata/Prelude.lc 342:31-342:32 b_ -testdata/Prelude.lc 342:35-342:37 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 342:25-342:26 VecScalar _d Float +testdata/Prelude.lc 342:27-342:28 VecScalar _c Float +testdata/Prelude.lc 342:29-342:30 _b +testdata/Prelude.lc 342:31-342:32 _b +testdata/Prelude.lc 342:35-342:37 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 342:35-342:42 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 342:35-342:44 Float -> Float -> VecS Float 4 testdata/Prelude.lc 342:35-342:46 Float -> VecS Float 4 testdata/Prelude.lc 342:35-342:48 VecS Float 4 -testdata/Prelude.lc 342:39-342:40 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 342:39-342:40 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 342:39-342:41 Float testdata/Prelude.lc 342:40-342:41 VecScalar 1 Float testdata/Prelude.lc 342:43-342:44 VecScalar 1 Float -testdata/Prelude.lc 342:45-342:46 b_ -testdata/Prelude.lc 342:47-342:48 b_ -testdata/Prelude.lc 342:51-342:53 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 342:51-342:55 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 342:51-342:57 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 342:51-342:59 c_ -> VecS c_ 4 +testdata/Prelude.lc 342:45-342:46 _b +testdata/Prelude.lc 342:47-342:48 _b +testdata/Prelude.lc 342:51-342:53 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 342:51-342:55 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 342:51-342:57 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 342:51-342:59 _c -> VecS _c 4 testdata/Prelude.lc 342:51-342:61 VecS Float 4 -testdata/Prelude.lc 342:54-342:55 b_ -testdata/Prelude.lc 342:56-342:57 b_ -testdata/Prelude.lc 342:58-342:59 b_ -testdata/Prelude.lc 342:60-342:61 b_ -testdata/Prelude.lc 342:64-342:66 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 342:64-342:68 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 342:64-342:70 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 342:64-342:72 c_ -> VecS c_ 4 +testdata/Prelude.lc 342:54-342:55 _b +testdata/Prelude.lc 342:56-342:57 _b +testdata/Prelude.lc 342:58-342:59 _b +testdata/Prelude.lc 342:60-342:61 _b +testdata/Prelude.lc 342:64-342:66 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 342:64-342:68 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 342:64-342:70 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 342:64-342:72 _c -> VecS _c 4 testdata/Prelude.lc 342:64-342:74 VecS Float 4 -testdata/Prelude.lc 342:67-342:68 b_ -testdata/Prelude.lc 342:69-342:70 b_ -testdata/Prelude.lc 342:71-342:72 b_ -testdata/Prelude.lc 342:73-342:74 b_ -testdata/Prelude.lc 344:9-344:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 344:9-344:14 VecScalar a_ Float -testdata/Prelude.lc 344:13-344:14 c_ -testdata/Prelude.lc 345:9-345:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 345:9-345:14 VecScalar b_ Float -testdata/Prelude.lc 345:13-345:14 VecScalar c_ Float +testdata/Prelude.lc 342:67-342:68 _b +testdata/Prelude.lc 342:69-342:70 _b +testdata/Prelude.lc 342:71-342:72 _b +testdata/Prelude.lc 342:73-342:74 _b +testdata/Prelude.lc 344:9-344:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 344:9-344:14 VecScalar _a Float +testdata/Prelude.lc 344:13-344:14 _c +testdata/Prelude.lc 345:9-345:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 345:9-345:14 VecScalar _b Float +testdata/Prelude.lc 345:13-345:14 VecScalar _c Float testdata/Prelude.lc 347:1-347:11 VecScalar 1 Float -> Mat 4 4 Float testdata/Prelude.lc 347:16-347:20 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 347:16-347:36 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 347:16-347:49 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 347:16-347:62 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 347:16-347:75 Mat 4 4 Float -testdata/Prelude.lc 347:22-347:24 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 347:22-347:26 VecScalar c_ Float -> VecScalar c_ Float -> VecScalar c_ Float -> VecS (VecScalar c_ Float) 4 -testdata/Prelude.lc 347:22-347:28 VecScalar d_ Float -> VecScalar d_ Float -> VecS (VecScalar d_ Float) 4 -testdata/Prelude.lc 347:22-347:33 VecScalar f_ Float -> VecS (VecScalar f_ Float) 4 +testdata/Prelude.lc 347:22-347:24 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 347:22-347:26 VecScalar _c Float -> VecScalar _c Float -> VecScalar _c Float -> VecS (VecScalar _c Float) 4 +testdata/Prelude.lc 347:22-347:28 VecScalar _d Float -> VecScalar _d Float -> VecS (VecScalar _d Float) 4 +testdata/Prelude.lc 347:22-347:33 VecScalar _f Float -> VecS (VecScalar _f Float) 4 testdata/Prelude.lc 347:22-347:35 VecS (VecScalar 1 Float) 4 -testdata/Prelude.lc 347:25-347:26 VecScalar d_ Float -testdata/Prelude.lc 347:27-347:28 b_ -testdata/Prelude.lc 347:30-347:31 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 347:30-347:32 VecScalar f_ Float -testdata/Prelude.lc 347:31-347:32 VecScalar f_ Float -testdata/Prelude.lc 347:34-347:35 b_ -testdata/Prelude.lc 347:38-347:40 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 347:38-347:42 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 347:38-347:44 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 347:38-347:46 c_ -> VecS c_ 4 +testdata/Prelude.lc 347:25-347:26 VecScalar _d Float +testdata/Prelude.lc 347:27-347:28 _b +testdata/Prelude.lc 347:30-347:31 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 347:30-347:32 VecScalar _f Float +testdata/Prelude.lc 347:31-347:32 VecScalar _f Float +testdata/Prelude.lc 347:34-347:35 _b +testdata/Prelude.lc 347:38-347:40 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 347:38-347:42 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 347:38-347:44 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 347:38-347:46 _c -> VecS _c 4 testdata/Prelude.lc 347:38-347:48 VecS Float 4 -testdata/Prelude.lc 347:41-347:42 b_ -testdata/Prelude.lc 347:43-347:44 b_ -testdata/Prelude.lc 347:45-347:46 b_ -testdata/Prelude.lc 347:47-347:48 b_ -testdata/Prelude.lc 347:51-347:53 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 347:41-347:42 _b +testdata/Prelude.lc 347:43-347:44 _b +testdata/Prelude.lc 347:45-347:46 _b +testdata/Prelude.lc 347:47-347:48 _b +testdata/Prelude.lc 347:51-347:53 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 347:51-347:55 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 347:51-347:57 Float -> Float -> VecS Float 4 testdata/Prelude.lc 347:51-347:59 Float -> VecS Float 4 testdata/Prelude.lc 347:51-347:61 VecS Float 4 testdata/Prelude.lc 347:54-347:55 VecScalar 1 Float -testdata/Prelude.lc 347:56-347:57 b_ +testdata/Prelude.lc 347:56-347:57 _b testdata/Prelude.lc 347:58-347:59 VecScalar 1 Float -testdata/Prelude.lc 347:60-347:61 b_ -testdata/Prelude.lc 347:64-347:66 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 347:64-347:68 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 347:64-347:70 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 347:64-347:72 c_ -> VecS c_ 4 +testdata/Prelude.lc 347:60-347:61 _b +testdata/Prelude.lc 347:64-347:66 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 347:64-347:68 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 347:64-347:70 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 347:64-347:72 _c -> VecS _c 4 testdata/Prelude.lc 347:64-347:74 VecS Float 4 -testdata/Prelude.lc 347:67-347:68 b_ -testdata/Prelude.lc 347:69-347:70 b_ -testdata/Prelude.lc 347:71-347:72 b_ -testdata/Prelude.lc 347:73-347:74 b_ -testdata/Prelude.lc 349:9-349:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 349:9-349:14 VecScalar a_ Float -testdata/Prelude.lc 349:13-349:14 c_ -testdata/Prelude.lc 350:9-350:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 350:9-350:14 VecScalar b_ Float -testdata/Prelude.lc 350:13-350:14 VecScalar c_ Float +testdata/Prelude.lc 347:67-347:68 _b +testdata/Prelude.lc 347:69-347:70 _b +testdata/Prelude.lc 347:71-347:72 _b +testdata/Prelude.lc 347:73-347:74 _b +testdata/Prelude.lc 349:9-349:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 349:9-349:14 VecScalar _a Float +testdata/Prelude.lc 349:13-349:14 _c +testdata/Prelude.lc 350:9-350:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 350:9-350:14 VecScalar _b Float +testdata/Prelude.lc 350:13-350:14 VecScalar _c Float testdata/Prelude.lc 352:1-352:11 VecScalar 1 Float -> Mat 4 4 Float testdata/Prelude.lc 352:16-352:20 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 352:16-352:33 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 352:16-352:46 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 352:16-352:62 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 352:16-352:75 Mat 4 4 Float -testdata/Prelude.lc 352:22-352:24 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 352:22-352:26 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 352:22-352:28 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 352:22-352:30 c_ -> VecS c_ 4 +testdata/Prelude.lc 352:22-352:24 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 352:22-352:26 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 352:22-352:28 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 352:22-352:30 _c -> VecS _c 4 testdata/Prelude.lc 352:22-352:32 VecS Float 4 -testdata/Prelude.lc 352:25-352:26 b_ -testdata/Prelude.lc 352:27-352:28 b_ -testdata/Prelude.lc 352:29-352:30 b_ -testdata/Prelude.lc 352:31-352:32 b_ -testdata/Prelude.lc 352:35-352:37 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 352:35-352:39 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 352:35-352:41 VecScalar d_ Float -> VecScalar d_ Float -> VecS (VecScalar d_ Float) 4 -testdata/Prelude.lc 352:35-352:43 VecScalar d_ Float -> VecS (VecScalar d_ Float) 4 +testdata/Prelude.lc 352:25-352:26 _b +testdata/Prelude.lc 352:27-352:28 _b +testdata/Prelude.lc 352:29-352:30 _b +testdata/Prelude.lc 352:31-352:32 _b +testdata/Prelude.lc 352:35-352:37 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 352:35-352:39 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 352:35-352:41 VecScalar _d Float -> VecScalar _d Float -> VecS (VecScalar _d Float) 4 +testdata/Prelude.lc 352:35-352:43 VecScalar _d Float -> VecS (VecScalar _d Float) 4 testdata/Prelude.lc 352:35-352:45 VecS (VecScalar 1 Float) 4 -testdata/Prelude.lc 352:38-352:39 b_ -testdata/Prelude.lc 352:40-352:41 VecScalar e_ Float -testdata/Prelude.lc 352:42-352:43 VecScalar d_ Float -testdata/Prelude.lc 352:44-352:45 b_ -testdata/Prelude.lc 352:48-352:50 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 352:48-352:52 b_ -> b_ -> b_ -> VecS b_ 4 +testdata/Prelude.lc 352:38-352:39 _b +testdata/Prelude.lc 352:40-352:41 VecScalar _e Float +testdata/Prelude.lc 352:42-352:43 VecScalar _d Float +testdata/Prelude.lc 352:44-352:45 _b +testdata/Prelude.lc 352:48-352:50 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 352:48-352:52 _b -> _b -> _b -> VecS _b 4 testdata/Prelude.lc 352:48-352:57 Float -> Float -> VecS Float 4 testdata/Prelude.lc 352:48-352:59 Float -> VecS Float 4 testdata/Prelude.lc 352:48-352:61 VecS Float 4 -testdata/Prelude.lc 352:51-352:52 b_ -testdata/Prelude.lc 352:54-352:55 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 352:51-352:52 _b +testdata/Prelude.lc 352:54-352:55 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 352:54-352:56 Float testdata/Prelude.lc 352:55-352:56 VecScalar 1 Float testdata/Prelude.lc 352:58-352:59 VecScalar 1 Float -testdata/Prelude.lc 352:60-352:61 b_ -testdata/Prelude.lc 352:64-352:66 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 352:64-352:68 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 352:64-352:70 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 352:64-352:72 c_ -> VecS c_ 4 +testdata/Prelude.lc 352:60-352:61 _b +testdata/Prelude.lc 352:64-352:66 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 352:64-352:68 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 352:64-352:70 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 352:64-352:72 _c -> VecS _c 4 testdata/Prelude.lc 352:64-352:74 VecS Float 4 -testdata/Prelude.lc 352:67-352:68 b_ -testdata/Prelude.lc 352:69-352:70 b_ -testdata/Prelude.lc 352:71-352:72 b_ -testdata/Prelude.lc 352:73-352:74 b_ -testdata/Prelude.lc 354:9-354:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 354:9-354:14 VecScalar a_ Float -testdata/Prelude.lc 354:13-354:14 c_ -testdata/Prelude.lc 355:9-355:12 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 355:9-355:14 VecScalar b_ Float -testdata/Prelude.lc 355:13-355:14 VecScalar c_ Float +testdata/Prelude.lc 352:67-352:68 _b +testdata/Prelude.lc 352:69-352:70 _b +testdata/Prelude.lc 352:71-352:72 _b +testdata/Prelude.lc 352:73-352:74 _b +testdata/Prelude.lc 354:9-354:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 354:9-354:14 VecScalar _a Float +testdata/Prelude.lc 354:13-354:14 _c +testdata/Prelude.lc 355:9-355:12 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 355:9-355:14 VecScalar _b Float +testdata/Prelude.lc 355:13-355:14 VecScalar _c Float testdata/Prelude.lc 357:1-357:14 Float -> Float -> Float -> Mat 4 4 Float testdata/Prelude.lc 357:23-357:33 VecScalar 1 Float -> Mat 4 4 Float testdata/Prelude.lc 357:23-357:35 Mat 4 4 Float -testdata/Prelude.lc 357:23-357:39 Mat 4 a_ Float -> Mat 4 a_ Float +testdata/Prelude.lc 357:23-357:39 Mat 4 _a Float -> Mat 4 _a Float testdata/Prelude.lc 357:23-357:52 Mat 4 4 Float -testdata/Prelude.lc 357:23-357:56 Mat 4 a_ Float -> Mat 4 a_ Float +testdata/Prelude.lc 357:23-357:56 Mat 4 _a Float -> Mat 4 _a Float testdata/Prelude.lc 357:23-357:69 Mat 4 4 Float -testdata/Prelude.lc 357:34-357:35 k_ -testdata/Prelude.lc 357:36-357:39 {a:Nat} -> {b:Nat} -> {c} -> {d:Nat} -> Mat a b c -> Mat b d c -> Mat a d c +testdata/Prelude.lc 357:34-357:35 _k +testdata/Prelude.lc 357:36-357:39 forall (a :: Nat) (b :: Nat) c (d :: Nat) . Mat a b c -> Mat b d c -> Mat a d c testdata/Prelude.lc 357:40-357:50 VecScalar 1 Float -> Mat 4 4 Float testdata/Prelude.lc 357:40-357:52 Mat 4 4 Float -testdata/Prelude.lc 357:51-357:52 e_ -testdata/Prelude.lc 357:53-357:56 {a:Nat} -> {b:Nat} -> {c} -> {d:Nat} -> Mat a b c -> Mat b d c -> Mat a d c +testdata/Prelude.lc 357:51-357:52 _e +testdata/Prelude.lc 357:53-357:56 forall (a :: Nat) (b :: Nat) c (d :: Nat) . Mat a b c -> Mat b d c -> Mat a d c testdata/Prelude.lc 357:57-357:67 VecScalar 1 Float -> Mat 4 4 Float testdata/Prelude.lc 357:57-357:69 Mat 4 4 Float -testdata/Prelude.lc 357:68-357:69 b_ -testdata/Prelude.lc 359:21-359:24 Nat -> Type->Type -testdata/Prelude.lc 359:21-359:26 Type->Type +testdata/Prelude.lc 357:68-357:69 _b +testdata/Prelude.lc 359:21-359:24 Nat -> Type -> Type +testdata/Prelude.lc 359:21-359:26 Type -> Type testdata/Prelude.lc 359:21-359:32 Type -testdata/Prelude.lc 359:25-359:26 b_ +testdata/Prelude.lc 359:25-359:26 _b testdata/Prelude.lc 359:27-359:32 Type -testdata/Prelude.lc 359:36-359:39 Nat -> Nat -> Type->Type -testdata/Prelude.lc 359:36-359:41 Nat -> Type->Type -testdata/Prelude.lc 359:36-359:43 Type->Type +testdata/Prelude.lc 359:36-359:39 Nat -> Nat -> Type -> Type +testdata/Prelude.lc 359:36-359:41 Nat -> Type -> Type +testdata/Prelude.lc 359:36-359:43 Type -> Type testdata/Prelude.lc 359:36-359:49 Type -testdata/Prelude.lc 359:40-359:41 b_ -testdata/Prelude.lc 359:42-359:43 b_ +testdata/Prelude.lc 359:40-359:41 _b +testdata/Prelude.lc 359:42-359:43 _b testdata/Prelude.lc 359:44-359:49 Type testdata/Prelude.lc 360:1-360:17 Vec 3 Float -> Mat 4 4 Float testdata/Prelude.lc 360:22-360:26 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float @@ -1388,38 +1388,38 @@ testdata/Prelude.lc 360:22-360:32 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 360:22-360:35 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 360:22-360:38 Mat 4 4 Float testdata/Prelude.lc 360:22-365:25 Vec 3 Float -> Mat 4 4 Float -testdata/Prelude.lc 360:27-360:29 {a} -> {_ : Num a} -> VecS a 4 -testdata/Prelude.lc 360:30-360:32 {a} -> {_ : Num a} -> VecS a 4 -testdata/Prelude.lc 360:33-360:35 {a} -> {_ : Num a} -> VecS a 4 +testdata/Prelude.lc 360:27-360:29 forall a . Num a => VecS a 4 +testdata/Prelude.lc 360:30-360:32 forall a . Num a => VecS a 4 +testdata/Prelude.lc 360:33-360:35 forall a . Num a => VecS a 4 testdata/Prelude.lc 360:36-360:38 VecS Float 4 -testdata/Prelude.lc 362:9-362:11 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 362:9-362:13 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 362:9-362:15 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 362:9-362:17 c_ -> VecS c_ 4 -testdata/Prelude.lc 362:9-362:19 VecS c_ 4 -testdata/Prelude.lc 362:12-362:13 b_ -testdata/Prelude.lc 362:14-362:15 b_ -testdata/Prelude.lc 362:16-362:17 b_ -testdata/Prelude.lc 362:18-362:19 b_ -testdata/Prelude.lc 363:9-363:11 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 363:9-363:13 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 363:9-363:15 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 363:9-363:17 c_ -> VecS c_ 4 -testdata/Prelude.lc 363:9-363:19 VecS c_ 4 -testdata/Prelude.lc 363:12-363:13 b_ -testdata/Prelude.lc 363:14-363:15 b_ -testdata/Prelude.lc 363:16-363:17 b_ -testdata/Prelude.lc 363:18-363:19 b_ -testdata/Prelude.lc 364:9-364:11 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 364:9-364:13 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 364:9-364:15 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 364:9-364:17 c_ -> VecS c_ 4 -testdata/Prelude.lc 364:9-364:19 VecS c_ 4 -testdata/Prelude.lc 364:12-364:13 b_ -testdata/Prelude.lc 364:14-364:15 b_ -testdata/Prelude.lc 364:16-364:17 b_ -testdata/Prelude.lc 364:18-364:19 b_ -testdata/Prelude.lc 365:9-365:11 {a} -> a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 362:9-362:11 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 362:9-362:13 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 362:9-362:15 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 362:9-362:17 _c -> VecS _c 4 +testdata/Prelude.lc 362:9-362:19 VecS _c 4 +testdata/Prelude.lc 362:12-362:13 _b +testdata/Prelude.lc 362:14-362:15 _b +testdata/Prelude.lc 362:16-362:17 _b +testdata/Prelude.lc 362:18-362:19 _b +testdata/Prelude.lc 363:9-363:11 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 363:9-363:13 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 363:9-363:15 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 363:9-363:17 _c -> VecS _c 4 +testdata/Prelude.lc 363:9-363:19 VecS _c 4 +testdata/Prelude.lc 363:12-363:13 _b +testdata/Prelude.lc 363:14-363:15 _b +testdata/Prelude.lc 363:16-363:17 _b +testdata/Prelude.lc 363:18-363:19 _b +testdata/Prelude.lc 364:9-364:11 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 364:9-364:13 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 364:9-364:15 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 364:9-364:17 _c -> VecS _c 4 +testdata/Prelude.lc 364:9-364:19 VecS _c 4 +testdata/Prelude.lc 364:12-364:13 _b +testdata/Prelude.lc 364:14-364:15 _b +testdata/Prelude.lc 364:16-364:17 _b +testdata/Prelude.lc 364:18-364:19 _b +testdata/Prelude.lc 365:9-365:11 forall a . a -> a -> a -> a -> VecS a 4 testdata/Prelude.lc 365:9-365:15 Float -> Float -> Float -> VecS Float 4 testdata/Prelude.lc 365:9-365:19 Float -> Float -> VecS Float 4 testdata/Prelude.lc 365:9-365:23 Float -> VecS Float 4 @@ -1430,120 +1430,120 @@ testdata/Prelude.lc 365:16-365:17 Vec 3 Float testdata/Prelude.lc 365:16-365:19 Float testdata/Prelude.lc 365:20-365:21 Vec 3 Float testdata/Prelude.lc 365:20-365:23 Float -testdata/Prelude.lc 365:24-365:25 b_ -testdata/Prelude.lc 368:11-368:14 Nat -> Type->Type -testdata/Prelude.lc 368:11-368:16 Type->Type +testdata/Prelude.lc 365:24-365:25 _b +testdata/Prelude.lc 368:11-368:14 Nat -> Type -> Type +testdata/Prelude.lc 368:11-368:16 Type -> Type testdata/Prelude.lc 368:11-368:22 Type -testdata/Prelude.lc 368:15-368:16 b_ +testdata/Prelude.lc 368:15-368:16 _b testdata/Prelude.lc 368:17-368:22 Type -testdata/Prelude.lc 369:11-369:14 Nat -> Type->Type -testdata/Prelude.lc 369:11-369:16 Type->Type +testdata/Prelude.lc 369:11-369:14 Nat -> Type -> Type +testdata/Prelude.lc 369:11-369:16 Type -> Type testdata/Prelude.lc 369:11-369:22 Type testdata/Prelude.lc 369:11-371:24 Type -testdata/Prelude.lc 369:15-369:16 b_ +testdata/Prelude.lc 369:15-369:16 _b testdata/Prelude.lc 369:17-369:22 Type -testdata/Prelude.lc 370:11-370:14 Nat -> Type->Type -testdata/Prelude.lc 370:11-370:16 Type->Type +testdata/Prelude.lc 370:11-370:14 Nat -> Type -> Type +testdata/Prelude.lc 370:11-370:16 Type -> Type testdata/Prelude.lc 370:11-370:22 Type testdata/Prelude.lc 370:11-371:24 Type -testdata/Prelude.lc 370:15-370:16 b_ +testdata/Prelude.lc 370:15-370:16 _b testdata/Prelude.lc 370:17-370:22 Type -testdata/Prelude.lc 371:11-371:14 Nat -> Nat -> Type->Type -testdata/Prelude.lc 371:11-371:16 Nat -> Type->Type -testdata/Prelude.lc 371:11-371:18 Type->Type +testdata/Prelude.lc 371:11-371:14 Nat -> Nat -> Type -> Type +testdata/Prelude.lc 371:11-371:16 Nat -> Type -> Type +testdata/Prelude.lc 371:11-371:18 Type -> Type testdata/Prelude.lc 371:11-371:24 Type -testdata/Prelude.lc 371:15-371:16 b_ -testdata/Prelude.lc 371:17-371:18 b_ +testdata/Prelude.lc 371:15-371:16 _b +testdata/Prelude.lc 371:17-371:18 _b testdata/Prelude.lc 371:19-371:24 Type testdata/Prelude.lc 372:1-372:7 Vec 3 Float -> Vec 3 Float -> Vec 3 Float -> Mat 4 4 Float testdata/Prelude.lc 372:24-372:25 Mat 4 4 Float -testdata/Prelude.lc 372:24-372:29 Mat 4 a_ Float -> Mat 4 a_ Float +testdata/Prelude.lc 372:24-372:29 Mat 4 _a Float -> Mat 4 _a Float testdata/Prelude.lc 372:24-372:56 Mat 4 4 Float testdata/Prelude.lc 372:24-378:65 Vec 3 Float -> Mat 4 4 Float | Vec 3 Float -> Vec 3 Float -> Mat 4 4 Float | Vec 3 Float -> Vec 3 Float -> Vec 3 Float -> Mat 4 4 Float -testdata/Prelude.lc 372:26-372:29 {a:Nat} -> {b:Nat} -> {c} -> {d:Nat} -> Mat a b c -> Mat b d c -> Mat a d c +testdata/Prelude.lc 372:26-372:29 forall (a :: Nat) (b :: Nat) c (d :: Nat) . Mat a b c -> Mat b d c -> Mat a d c testdata/Prelude.lc 372:30-372:46 Vec 3 Float -> Mat 4 4 Float testdata/Prelude.lc 372:30-372:56 Mat 4 4 Float -testdata/Prelude.lc 372:48-372:51 {a} -> {_ : Signed (MatVecScalarElem a)} -> a->a +testdata/Prelude.lc 372:48-372:51 forall a . Signed (MatVecScalarElem a) => a -> a testdata/Prelude.lc 372:48-372:55 VecS Float 3 testdata/Prelude.lc 372:52-372:55 Vec 3 Float -testdata/Prelude.lc 374:14-374:16 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 374:14-374:20 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 374:14-374:24 b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 374:14-374:28 b_ -> VecS b_ 4 -testdata/Prelude.lc 374:14-374:30 VecS c_ 4 -testdata/Prelude.lc 374:17-374:18 e_ -testdata/Prelude.lc 374:17-374:20 b_ -testdata/Prelude.lc 374:21-374:22 VecS d_ c_ -testdata/Prelude.lc 374:21-374:24 b_ -testdata/Prelude.lc 374:25-374:26 VecS d_ c_ -testdata/Prelude.lc 374:25-374:28 b_ -testdata/Prelude.lc 374:29-374:30 b_ -testdata/Prelude.lc 375:9-375:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 375:9-375:20 VecScalar a_ Float -> VecScalar a_ Float +testdata/Prelude.lc 374:14-374:16 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 374:14-374:20 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 374:14-374:24 _b -> _b -> VecS _b 4 +testdata/Prelude.lc 374:14-374:28 _b -> VecS _b 4 +testdata/Prelude.lc 374:14-374:30 VecS _c 4 +testdata/Prelude.lc 374:17-374:18 _e +testdata/Prelude.lc 374:17-374:20 _b +testdata/Prelude.lc 374:21-374:22 VecS _d _c +testdata/Prelude.lc 374:21-374:24 _b +testdata/Prelude.lc 374:25-374:26 VecS _d _c +testdata/Prelude.lc 374:25-374:28 _b +testdata/Prelude.lc 374:29-374:30 _b +testdata/Prelude.lc 375:9-375:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 375:9-375:20 VecScalar _a Float -> VecScalar _a Float testdata/Prelude.lc 375:9-375:33 VecScalar 3 Float -testdata/Prelude.lc 375:19-375:20 {a} -> {b} -> (a->b) -> a->b +testdata/Prelude.lc 375:19-375:20 forall a b . (a -> b) -> a -> b testdata/Prelude.lc 375:21-375:24 Vec 3 Float testdata/Prelude.lc 375:21-375:26 VecS Float 3 -> VecS Float 3 testdata/Prelude.lc 375:21-375:33 VecS Float 3 -testdata/Prelude.lc 375:25-375:26 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a +testdata/Prelude.lc 375:25-375:26 forall a . Num (MatVecScalarElem a) => a -> a -> a testdata/Prelude.lc 375:27-375:33 Vec 3 Float -testdata/Prelude.lc 376:9-376:18 {a} -> {b:Nat} -> {_ : a ~ VecScalar b Float} -> a->a -testdata/Prelude.lc 376:9-376:20 VecScalar a_ Float -> VecScalar a_ Float +testdata/Prelude.lc 376:9-376:18 forall a (b :: Nat) . (a ~ VecScalar b Float) => a -> a +testdata/Prelude.lc 376:9-376:20 VecScalar _a Float -> VecScalar _a Float testdata/Prelude.lc 376:9-376:33 VecScalar 3 Float -testdata/Prelude.lc 376:19-376:20 {a} -> {b} -> (a->b) -> a->b +testdata/Prelude.lc 376:19-376:20 forall a b . (a -> b) -> a -> b testdata/Prelude.lc 376:21-376:23 Vec 3 Float testdata/Prelude.lc 376:21-376:31 VecS Float 3 -> VecS Float 3 testdata/Prelude.lc 376:21-376:33 VecS Float 3 -testdata/Prelude.lc 376:24-376:31 {a} -> {_ : a ~ VecS Float 3} -> a -> a->a +testdata/Prelude.lc 376:24-376:31 forall a . (a ~ VecS Float 3) => a -> a -> a testdata/Prelude.lc 376:32-376:33 VecScalar 3 Float testdata/Prelude.lc 377:9-377:10 VecScalar 3 Float testdata/Prelude.lc 377:9-377:18 VecS Float 3 -> VecS Float 3 testdata/Prelude.lc 377:9-377:20 VecS Float 3 -testdata/Prelude.lc 377:11-377:18 {a} -> {_ : a ~ VecS Float 3} -> a -> a->a +testdata/Prelude.lc 377:11-377:18 forall a . (a ~ VecS Float 3) => a -> a -> a testdata/Prelude.lc 377:19-377:20 VecScalar 3 Float -testdata/Prelude.lc 378:9-378:18 {a:Nat} -> {b:Nat} -> {c} -> Mat a b c -> Mat b a c -testdata/Prelude.lc 378:9-378:20 Mat c_ b_ a_ -> Mat b_ c_ a_ +testdata/Prelude.lc 378:9-378:18 forall (a :: Nat) (b :: Nat) c . Mat a b c -> Mat b a c +testdata/Prelude.lc 378:9-378:20 Mat _c _b _a -> Mat _b _c _a testdata/Prelude.lc 378:9-378:65 Mat 4 4 Float -testdata/Prelude.lc 378:19-378:20 {a} -> {b} -> (a->b) -> a->b +testdata/Prelude.lc 378:19-378:20 forall a b . (a -> b) -> a -> b testdata/Prelude.lc 378:21-378:25 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 378:21-378:34 Vec 4 Float -> Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 378:21-378:43 Vec 4 Float -> Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 378:21-378:52 Vec 4 Float -> Mat 4 4 Float testdata/Prelude.lc 378:21-378:65 Mat 4 4 Float -testdata/Prelude.lc 378:27-378:31 {a} -> {b:Nat} -> {_ : Num a} -> VecS a b -> VecS a 4 +testdata/Prelude.lc 378:27-378:31 forall a (b :: Nat) . Num a => VecS a b -> VecS a 4 testdata/Prelude.lc 378:27-378:33 VecS Float 4 testdata/Prelude.lc 378:32-378:33 VecScalar 3 Float -testdata/Prelude.lc 378:36-378:40 {a} -> {b:Nat} -> {_ : Num a} -> VecS a b -> VecS a 4 +testdata/Prelude.lc 378:36-378:40 forall a (b :: Nat) . Num a => VecS a b -> VecS a 4 testdata/Prelude.lc 378:36-378:42 VecS Float 4 testdata/Prelude.lc 378:41-378:42 VecS Float 3 -testdata/Prelude.lc 378:45-378:49 {a} -> {b:Nat} -> {_ : Num a} -> VecS a b -> VecS a 4 +testdata/Prelude.lc 378:45-378:49 forall a (b :: Nat) . Num a => VecS a b -> VecS a 4 testdata/Prelude.lc 378:45-378:51 VecS Float 4 testdata/Prelude.lc 378:50-378:51 VecScalar 3 Float -testdata/Prelude.lc 378:54-378:56 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 378:54-378:58 b_ -> b_ -> b_ -> VecS b_ 4 -testdata/Prelude.lc 378:54-378:60 c_ -> c_ -> VecS c_ 4 -testdata/Prelude.lc 378:54-378:62 c_ -> VecS c_ 4 +testdata/Prelude.lc 378:54-378:56 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 378:54-378:58 _b -> _b -> _b -> VecS _b 4 +testdata/Prelude.lc 378:54-378:60 _c -> _c -> VecS _c 4 +testdata/Prelude.lc 378:54-378:62 _c -> VecS _c 4 testdata/Prelude.lc 378:54-378:64 VecS Float 4 -testdata/Prelude.lc 378:57-378:58 b_ -testdata/Prelude.lc 378:59-378:60 b_ -testdata/Prelude.lc 378:61-378:62 b_ -testdata/Prelude.lc 378:63-378:64 b_ +testdata/Prelude.lc 378:57-378:58 _b +testdata/Prelude.lc 378:59-378:60 _b +testdata/Prelude.lc 378:61-378:62 _b +testdata/Prelude.lc 378:63-378:64 _b testdata/Prelude.lc 380:1-380:6 Float -> VecS Float 4 -> VecS Float 4 -testdata/Prelude.lc 380:13-380:14 d_ -testdata/Prelude.lc 380:13-380:16 c_->c_ +testdata/Prelude.lc 380:13-380:14 _d +testdata/Prelude.lc 380:13-380:16 _c -> _c testdata/Prelude.lc 380:13-380:29 VecS Float 4 -testdata/Prelude.lc 380:15-380:16 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 380:17-380:19 {a} -> a -> a -> a -> a -> VecS a 4 -testdata/Prelude.lc 380:17-380:21 e_ -> e_ -> e_ -> VecS e_ 4 -testdata/Prelude.lc 380:17-380:23 e_ -> e_ -> VecS e_ 4 -testdata/Prelude.lc 380:17-380:25 e_ -> VecS e_ 4 +testdata/Prelude.lc 380:15-380:16 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 380:17-380:19 forall a . a -> a -> a -> a -> VecS a 4 +testdata/Prelude.lc 380:17-380:21 _e -> _e -> _e -> VecS _e 4 +testdata/Prelude.lc 380:17-380:23 _e -> _e -> VecS _e 4 +testdata/Prelude.lc 380:17-380:25 _e -> VecS _e 4 testdata/Prelude.lc 380:17-380:29 VecS Float 4 -testdata/Prelude.lc 380:20-380:21 f_ -testdata/Prelude.lc 380:22-380:23 e_ -testdata/Prelude.lc 380:24-380:25 e_ +testdata/Prelude.lc 380:20-380:21 _f +testdata/Prelude.lc 380:22-380:23 _e +testdata/Prelude.lc 380:24-380:25 _e testdata/Prelude.lc 380:26-380:29 Float testdata/Prelude.lc 382:11-382:16 Type -testdata/Prelude.lc 382:11-385:38 Float -> Float -> List Float | a_->a_ +testdata/Prelude.lc 382:11-385:38 Float -> Float -> List Float | _a -> _a testdata/Prelude.lc 382:20-382:25 Type testdata/Prelude.lc 382:20-382:36 Type testdata/Prelude.lc 382:29-382:36 Type @@ -1553,42 +1553,42 @@ testdata/Prelude.lc 384:7-384:8 Float testdata/Prelude.lc 384:7-384:10 VecScalar 1 Float -> VecScalar 1 Bool testdata/Prelude.lc 384:7-384:12 VecScalar 1 Bool testdata/Prelude.lc 384:7-385:38 Float -> Float -> List Float | Float -> List Float | List Float -testdata/Prelude.lc 384:9-384:10 {a:Nat} -> {b} -> {_ : Num b} -> VecScalar a b -> VecScalar a b -> VecScalar a Bool +testdata/Prelude.lc 384:9-384:10 forall (a :: Nat) b . Num b => VecScalar a b -> VecScalar a b -> VecScalar a Bool testdata/Prelude.lc 384:11-384:12 Float -testdata/Prelude.lc 384:15-384:17 {a} -> List a +testdata/Prelude.lc 384:15-384:17 forall a . List a testdata/Prelude.lc 384:15-385:38 Bool -> List Float testdata/Prelude.lc 385:19-385:20 Float testdata/Prelude.lc 385:19-385:21 List Float -> List Float testdata/Prelude.lc 385:19-385:38 List Float -testdata/Prelude.lc 385:20-385:21 {a} -> a -> List a -> List a +testdata/Prelude.lc 385:20-385:21 forall a . a -> List a -> List a testdata/Prelude.lc 385:22-385:28 Float -> Float -> List Float testdata/Prelude.lc 385:22-385:36 Float -> List Float testdata/Prelude.lc 385:22-385:38 List Float testdata/Prelude.lc 385:30-385:31 Float -testdata/Prelude.lc 385:30-385:33 Float->Float +testdata/Prelude.lc 385:30-385:33 Float -> Float testdata/Prelude.lc 385:30-385:35 Float -testdata/Prelude.lc 385:32-385:33 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 385:34-385:35 b_ +testdata/Prelude.lc 385:32-385:33 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 385:34-385:35 _b testdata/Prelude.lc 385:37-385:38 Float testdata/Prelude.lc 387:9-387:12 Type testdata/Prelude.lc 387:9-387:24 Type -testdata/Prelude.lc 387:9-389:30 a_->a_ | {a} -> List a -> Int->a -testdata/Prelude.lc 387:10-387:11 b_ +testdata/Prelude.lc 387:9-389:30 _a -> _a | forall a . List a -> Int -> a +testdata/Prelude.lc 387:10-387:11 _b testdata/Prelude.lc 387:16-387:19 Type testdata/Prelude.lc 387:16-387:24 Type testdata/Prelude.lc 387:23-387:24 Type -testdata/Prelude.lc 388:10-388:12 {a} -> List a -> Int->a -testdata/Prelude.lc 388:19-388:20 d_ -testdata/Prelude.lc 388:19-389:30 Bool->d_ | Int->b_ | List a_ -> Int->a_ | List c_ -> b_ | b_ -> List b_ -> a_ | c_ -testdata/Prelude.lc 389:19-389:21 List f_ -testdata/Prelude.lc 389:19-389:24 Int->e_ -testdata/Prelude.lc 389:19-389:30 d_ -testdata/Prelude.lc 389:22-389:24 {a} -> List a -> Int->a +testdata/Prelude.lc 388:10-388:12 forall a . List a -> Int -> a +testdata/Prelude.lc 388:19-388:20 _d +testdata/Prelude.lc 388:19-389:30 Bool -> _d | Int -> _b | List _a -> Int -> _a | List _c -> _b | _b -> List _b -> _a | _c +testdata/Prelude.lc 389:19-389:21 List _f +testdata/Prelude.lc 389:19-389:24 Int -> _e +testdata/Prelude.lc 389:19-389:30 _d +testdata/Prelude.lc 389:22-389:24 forall a . List a -> Int -> a testdata/Prelude.lc 389:26-389:27 Int -testdata/Prelude.lc 389:26-389:28 Int->Int +testdata/Prelude.lc 389:26-389:28 Int -> Int testdata/Prelude.lc 389:26-389:29 Int -testdata/Prelude.lc 389:27-389:28 {a} -> {_ : Num (MatVecScalarElem a)} -> a -> a->a -testdata/Prelude.lc 389:28-389:29 b_ +testdata/Prelude.lc 389:27-389:28 forall a . Num (MatVecScalarElem a) => a -> a -> a +testdata/Prelude.lc 389:28-389:29 _b ------------ warnings Uncovered pattern(s) at testdata/Prelude.lc:50:1: tail (_: xs) = xs -- cgit v1.2.3