diff options
Diffstat (limited to 'src/Reducer.hs')
-rw-r--r-- | src/Reducer.hs | 132 |
1 files changed, 95 insertions, 37 deletions
diff --git a/src/Reducer.hs b/src/Reducer.hs index 7ba5845..8ff23b1 100644 --- a/src/Reducer.hs +++ b/src/Reducer.hs @@ -1,43 +1,101 @@ +-- MIT License, Copyright (c) 2023 Marvin Borner +-- based on the RKNL abstract machine module Reducer ( reduce ) where +import Data.IORef +import Data.List ( elemIndex ) +import Data.Map ( Map ) +import qualified Data.Map as Map import Helper +import System.Random ( randomIO ) --- TODO: Research interaction nets and optimal reduction - --- TODO: Eta-reduction: [f 0] => f --- (Abstraction f@_ (Bruijn 0)) = f - -(<+>) :: Expression -> Int -> Expression -(<+>) (Bruijn x ) n = if x > n then Bruijn (pred x) else Bruijn x -(<+>) (Application e1 e2) n = Application (e1 <+> n) (e2 <+> n) -(<+>) (Abstraction e ) n = Abstraction $ e <+> (succ n) -(<+>) _ _ = error "invalid" - -(<->) :: Expression -> Int -> Expression -(<->) (Bruijn x ) n = if x > n then Bruijn (succ x) else Bruijn x -(<->) (Application e1 e2) n = Application (e1 <-> n) (e2 <-> n) -(<->) (Abstraction e ) n = Abstraction $ e <-> (succ n) -(<->) _ _ = error "invalid" - -bind :: Expression -> Expression -> Int -> Expression -bind e (Bruijn x ) n = if x == n then e else Bruijn x -bind e (Application e1 e2) n = Application (bind e e1 n) (bind e e2 n) -bind e (Abstraction exp' ) n = Abstraction $ bind (e <-> (-1)) exp' (succ n) -bind _ _ _ = error "invalid" - -step :: Expression -> Expression -step (Bruijn e) = Bruijn e -step (Application (Abstraction e) app) = (bind (app <-> (-1)) e 0) <+> 0 -step (Application e1 e2) = Application (step e1) (step e2) -step (Abstraction e) = Abstraction (step e) -step _ = error "invalid" - --- until eq -converge :: Eq a => (a -> a) -> a -> a -converge = until =<< ((==) =<<) - --- alpha conversion is not needed with de bruijn indexing -reduce :: Expression -> Expression -reduce = converge step +type Store = Map Int Box +type Stack = [Redex] + +data BoxValue = Todo Redex | Done Redex | Empty +data Box = Box (IORef BoxValue) +data Rvar = Num Int | Hole +data Redex = Rabs Int Redex | Rapp Redex Redex | Rvar Rvar | Rclosure Redex Store | Rcache Box Redex +data Conf = Econf Redex Store Stack | Cconf Stack Redex | End + +toRedex :: Expression -> IO Redex +toRedex = convertWorker [] + where + convertWorker ns (Abstraction e) = do + v <- randomIO :: IO Int + t <- convertWorker (v : ns) e + pure $ Rabs v t + convertWorker ns (Application l r) = do + lhs <- convertWorker ns l + rhs <- convertWorker ns r + pure $ Rapp lhs rhs + convertWorker ns (Bruijn i) = pure $ Rvar $ Num + (if idx < 0 then i else ns !! idx) + where idx = i + convertWorker _ _ = error "invalid" + +fromRedex :: Redex -> IO Expression +fromRedex = pure . convertWorker [] + where + convertWorker es (Rabs n e) = Abstraction $ convertWorker (n : es) e + convertWorker es (Rapp l r) = + Application (convertWorker es l) (convertWorker es r) + convertWorker es (Rvar (Num n)) = + Bruijn $ maybe (error $ "unbound variable " ++ show n) id $ elemIndex n es + convertWorker _ _ = error "invalid" + +transition :: Conf -> IO Conf +transition (Econf (Rapp u v) e s) = + pure $ Econf u e ((Rapp (Rvar Hole) (Rclosure v e)) : s) +transition (Econf (Rabs x t) e s) = do + box <- newIORef Empty + pure $ Cconf s (Rcache (Box box) (Rclosure (Rabs x t) e)) +transition (Econf (Rvar (Num x)) e s) = do + def <- newIORef $ Done $ Rvar $ Num x + let b@(Box m) = Map.findWithDefault (Box def) x e + rd <- readIORef m + case rd of + Todo (Rclosure v e') -> pure $ Econf v e' ((Rcache b (Rvar Hole)) : s) + Done t -> pure $ Cconf s t + _ -> error "invalid" +transition (Cconf ((Rcache (Box m) (Rvar Hole)) : s) t) = do + writeIORef m (Done t) + pure $ Cconf s t +transition (Cconf ((Rapp (Rvar Hole) ve) : s) (Rcache _ (Rclosure (Rabs x t) e))) + = do + box <- newIORef (Todo ve) + pure $ Econf t (Map.insert x (Box box) e) s +transition (Cconf s (Rcache (Box m) (Rclosure (Rabs x t) e))) = do + rd <- readIORef m + case rd of + Done v -> pure $ Cconf s v + Empty -> do + x1 <- randomIO :: IO Int + box <- newIORef $ Done $ Rvar $ Num x1 + pure $ Econf t + (Map.insert x (Box box) e) + ((Rabs x1 (Rvar Hole)) : (Rcache (Box m) (Rvar Hole)) : s) + Todo _ -> error "invalid" +transition (Cconf ((Rapp (Rvar Hole) (Rclosure v e)) : s) t) = + pure $ Econf v e ((Rapp t (Rvar Hole)) : s) +transition (Cconf ((Rapp t (Rvar Hole)) : s) v) = pure $ Cconf s (Rapp t v) +transition (Cconf ((Rabs x1 (Rvar Hole)) : s) v) = pure $ Cconf s (Rabs x1 v) +transition (Cconf [] _) = pure End +transition _ = error "invalid" + +forEachState :: Conf -> (Conf -> IO Conf) -> IO Conf +forEachState conf trans = trans conf >>= \case + End -> pure conf + next -> forEachState next trans + +loadTerm :: Redex -> Conf +loadTerm t = Econf t Map.empty [] + +reduce :: Expression -> IO Expression +reduce e = do + redex <- toRedex e + forEachState (loadTerm redex) transition >>= \case + Cconf [] v -> fromRedex v + _ -> error "invalid" |