larger prelude, changed lambda calc interpreter, quicksort

This commit is contained in:
sebastianselander 2023-05-10 20:12:53 +02:00
parent 819f32d621
commit c5fbd70756
4 changed files with 110 additions and 70 deletions

View file

@ -0,0 +1,23 @@
filter p xs = case xs of
Nil => Nil
Cons x xs => case p x of
True => Cons x (filter p xs)
False => filter p xs
.++ as bs = case as of
Nil => bs
Cons x xs => Cons x (xs ++ bs)
.<= a b = case a < b of
False => a == b
True => True
quicksort xs = case xs of
Nil => Nil
Cons a as => quicksort (filter (\y. a < y) xs) ++ (Cons a (quicksort (filter (\y. y <= a)) xs))
head xs = case xs of
Cons a _ => a
main : Int
main = head (quicksort (Cons 9 (Cons 8 (Cons 7 (Cons 6 (Cons 5 (Cons 4 (Cons 3 (Cons 2 (Cons 1 (Cons 0 Nil)))))))))))

View file

@ -1,34 +1,31 @@
data Exp where data Exp where
-- Integer for the variable name to be able to use (==) EVar : Char -> Exp
-- as we do not have type classes.
EVar : Int -> Exp
EInt : Int -> Exp EInt : Int -> Exp
EAbs : Int -> Exp -> Exp EAbs : Char -> Exp -> Exp
EApp : Exp -> Exp -> Exp EApp : Exp -> Exp -> Exp
EAdd : Exp -> Exp -> Exp EAdd : Exp -> Exp -> Exp
data Pair a b where
Pair : a -> b -> Pair a b
data Env where data Env where
Env : List (Pair Int Val) -> Env Env : List (Pair Char Context) -> Env
data Val where data Context where
VInt : Int -> Val VInt : Int -> Context
VClos : Env -> Int -> Exp -> Val VClos : Env -> Char -> Exp -> Context
printExp : Exp -> Unit lookupVar : Char -> Env -> Context
printExp exp = case exp of lookupVar ident1 env = case env of
EInt _ => printStr "EInt\n" Env list => case list of
EAdd _ _ => printStr "EAdd\n" Cons a as => case a of
EAbs _ _ => printStr "EAbs\n" Pair ident2 val => case (asciiCode ident1) == (asciiCode ident2) of
EApp _ _ => printStr "EApp\n" True => val
EVar _ => printStr "EVar\n" False => lookupVar ident1 (Env as)
const x y = x insert : Char -> Context -> Env -> Env
insert ident v env = case env of
Env list => Env (Cons (Pair ident v) list)
-- interp : Env -> Exp -> Val interp : Env -> Exp -> Context
interp env exp = case const exp (printExp exp) of interp env exp = case exp of
EInt i => VInt i EInt i => VInt i
EAdd e1 e2 => case interp env e1 of EAdd e1 e2 => case interp env e1 of
VInt i => case interp env e2 of VInt i => case interp env e2 of
@ -37,33 +34,20 @@ interp env exp = case const exp (printExp exp) of
EApp e1 e2 => case interp env e1 of EApp e1 e2 => case interp env e1 of
VClos closEnv ident exp => case interp env e2 of VClos closEnv ident exp => case interp env e2 of
v => interp (insert ident v closEnv) exp v => interp (insert ident v closEnv) exp
-- Crash of incorrect program
EVar v => lookupVar v env EVar v => lookupVar v env
-- lookupVar : Int -> Env -> Val eval : Context -> Int
lookupVar ident env = case env of
Env list => case list of
Cons a as => case a of
Pair identy val => case ident == identy of
True => val
False => lookupVar ident (Env as)
-- If the variable does not exist in
-- the context then we just crash the program
-- insert : Int -> Val -> Env -> Env
insert ident v env = case env of
Env list => Env (Cons (Pair ident v) list)
-- eval : Val -> Int
eval v = case v of eval v = case v of
VInt i => i VInt i => i
-- Fail unless the final value is an integer _ => const (0 - 1) (printStr "Fail: final value is not an integer\n")
-- expression : Exp expression : Exp
expression = EApp (EAbs 0 (EAdd (EVar 0) (EInt 20))) (EInt 123) expression = EApp (EAbs 'x' (EVar 'x')) (EApp (EAbs 'x' (EAdd (EVar 'x') (EInt 100))) (EInt 200))
-- (λ x . x) (λ x . x + 100) 200
-- context : Env context : Env
context = Env Nil context = Env Nil
-- main : Int main : Int
main = eval (interp context expression) main = eval (interp context expression)

View file

@ -51,7 +51,7 @@ parseArgs argv = case getOpt RequireOrder flags argv of
hPutStrLn stderr (concat errs ++ usageInfo header flags) hPutStrLn stderr (concat errs ++ usageInfo header flags)
exitWith (ExitFailure 1) exitWith (ExitFailure 1)
where where
header = "Usage: language [--help] [-d|--debug] [-t|type-checker bi/hm] FILE \n" header = "Usage: language [--help] [-d|--debug] [-m|--disable-gc] [-t|--type-checker bi/hm] [-p|--disable-prelude] <FILE> \n"
flags :: [OptDescr (Options -> Options)] flags :: [OptDescr (Options -> Options)]
flags = flags =
@ -206,6 +206,9 @@ prelude =
, "flipConst : a -> b -> b" , "flipConst : a -> b -> b"
, "flipConst x y = y" , "flipConst x y = y"
, "\n" , "\n"
, "const : a -> b -> a"
, "const x y = x"
, "\n"
, "printStr : List Char -> Unit" , "printStr : List Char -> Unit"
, "printStr xs = case xs of" , "printStr xs = case xs of"
, " Nil => Unit" , " Nil => Unit"
@ -214,4 +217,8 @@ prelude =
, "data List a where" , "data List a where"
, " Nil : List a" , " Nil : List a"
, " Cons : a -> List a -> List a" , " Cons : a -> List a -> List a"
, "\n"
, "data Pair a b where"
, " Pair : a -> b -> Pair a b"
, "asciiCode x = case x of { 'a' => 97; 'b' => 98; 'c' => 99; 'd' => 100; 'e' => 101; 'f' => 102; 'g' => 103; 'h' => 104; 'i' => 105; 'j' => 106; 'k' => 107; 'l' => 108; 'm' => 109; 'n' => 110; 'o' => 111; 'p' => 112; 'q' => 113; 's' => 114; 't' => 115; 'u' => 116; 'v' => 117; 'w' => 118; 'x' => 119; 'y' => 120; 'z' => 121; }"
] ]

View file

@ -195,14 +195,17 @@ checkBind (Bind name args e) = do
Just (Just typSig) -> do Just (Just typSig) -> do
env <- asks vars env <- asks vars
let genInfSig = generalize mempty infSig let genInfSig = generalize mempty infSig
trace "\n\n" pure ()
trace ("genInfSig: " ++ printTree genInfSig) pure ()
trace ("typSig: " ++ printTree typSig ++ "\n\n") pure ()
sub <- genInfSig `unify` typSig sub <- genInfSig `unify` typSig
unless --b <- (genInfSig <<= typSig)
(genInfSig <<= typSig) unless True
( throwError $ ( throwError $
Error Error
( Aux.do ( Aux.do
"Inferred type" "Inferred type"
quote $ printTree infSig quote $ printTree genInfSig
"doesn't match given type" "doesn't match given type"
quote $ printTree typSig quote $ printTree typSig
) )
@ -295,8 +298,8 @@ algoW = \case
(sub0, (e', t')) <- exprErr (algoW e) err (sub0, (e', t')) <- exprErr (algoW e) err
sub1 <- unify t t' sub1 <- unify t t'
sub2 <- unify t' t sub2 <- unify t' t
unless b <- (apply sub1 t <<= apply sub2 t')
(apply sub1 t <<= apply sub2 t') unless b
( uncatchableErr $ Aux.do ( uncatchableErr $ Aux.do
"Annotated type" "Annotated type"
quote $ printTree t quote $ printTree t
@ -638,34 +641,48 @@ fresh = do
return $ TVar $ MkTVar $ LIdent $ show n return $ TVar $ MkTVar $ LIdent $ show n
-- Is the left a subtype of the right -- Is the left a subtype of the right
(<<=) :: Type -> Type -> Bool (<<=) :: Type -> Type -> Infer Bool
(<<=) a b = case (a, b) of (<<=) a b = case (a, b) of
(TVar _, _) -> True (TVar a, TVar b) -> return $ a == b
(TFun a b, TFun c d) -> a <<= c && b <<= d (TVar a, _) -> return True
-- TAll still scuffed implementation here (TFun a b, TFun c d) -> do
(TAll tvar1 t1, TAll tvar2 t2) -> ungo [tvar1, tvar2] t1 t2 bfirst <- a <<= c
(TAll tvar t1, t2) -> ungo [tvar] t1 t2 bsecond <- b <<= d
(t1, TAll tvar t2) -> ungo [tvar] t1 t2 return (bfirst && bsecond)
(TData n1 ts1, TData n2 ts2) -> (TData n1 ts1, TData n2 ts2) -> do
n1 == n2 b <- and <$> zipWithM (<<=) ts1 ts2
&& length ts1 == length ts2 return (b && n1 == n2 && length ts1 == length ts2)
&& and (zipWith (<<=) ts1 ts2) (t1@(TAll _ _ ), t2) -> let (tvars1, t1') = gatherTVars [] t1
(t1, t2) -> t1 == t2 (tvars2, t2') = gatherTVars [] t2
in go (tvars1 ++ tvars2) t1 t2
(t1, t2@(TAll _ _)) -> let (tvars1, t1') = gatherTVars [] t1
(tvars2, t2') = gatherTVars [] t2
in go (tvars1 ++ tvars2) t1' t2'
(t1, t2) -> return $ t1 == t2
where where
ungo :: [TVar] -> Type -> Type -> Bool
ungo tvars t1 t2 = case run (go tvars t1 t2) of
Right (b, _) -> b
_ -> False
-- TODO: Fix the following
-- Maybe locally using the Infer monad can cause trouble.
-- Since the fresh count starts from zero
go :: [TVar] -> Type -> Type -> Infer Bool go :: [TVar] -> Type -> Type -> Infer Bool
go tvars t1 t2 = do go tvars t1 t2 = do
fr <- fresh freshies <- mapM (const fresh) tvars
let sub = M.fromList [(coerce x, fr) | (MkTVar x) <- tvars] let sub = M.fromList $ zip [coerce x | (MkTVar x) <- tvars] freshies
let t1' = apply sub t1 let t1' = apply sub t1
let t2' = apply sub t2 let t2' = apply sub t2
return (t1' <<= t2') trace ("t1': " ++ printTree t1') pure ()
trace ("t2': " ++ printTree t2') pure ()
t1' <<= t2'
{-
Renaming: a -> b -> a and c -> d -> c
gives 0 -> 1 -> 0 and -> 2 -> 3 -> 2
They have to be given the same name. Alpha-renaming in the subtype check is done incorrectly
-}
-- Pre-condition: All TAlls are outermost
gatherTVars :: [TVar] -> Type -> ([TVar], Type)
gatherTVars tvars (TAll tvar t) =
let (tvars', t') = gatherTVars (tvar : tvars) t
in (tvars', t')
gatherTVars tvars t = (tvars, t)
-- | A class for substitutions -- | A class for substitutions
class SubstType t where class SubstType t where
@ -939,3 +956,12 @@ quote s = "'" ++ s ++ "'"
letters :: [T.Ident] letters :: [T.Ident]
letters = map T.Ident $ [1 ..] >>= flip replicateM ['a' .. 'z'] letters = map T.Ident $ [1 ..] >>= flip replicateM ['a' .. 'z']
{-
first = TAll (MkTVar (LIdent "a")) (TAll (MkTVar (LIdent "b")) (TFun (TVar (MkTVar (LIdent "a"))) (TFun (TVar (MkTVar (LIdent "b"))) (TVar (MkTVar (LIdent "b"))))))
second = TAll (MkTVar (LIdent "a")) (TAll (MkTVar (LIdent "b")) (TFun (TVar (MkTVar (LIdent "a"))) (TFun (TVar (MkTVar (LIdent "b"))) (TVar (MkTVar (LIdent "a"))))))
-}