aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Term.hs
diff options
context:
space:
mode:
authorMarvin Borner2023-09-15 16:29:55 +0200
committerMarvin Borner2023-09-15 16:29:55 +0200
commit3adf8eced77b4513ef3f93343e385565dfa514d0 (patch)
tree57f0f744e131e414408bfa1c2af1cc1d9eee3f71 /src/Term.hs
parent1ec6f5b8e86ce9265b7bdcd1d5a9e1b4ca29afd5 (diff)
Started transpiler
Diffstat (limited to 'src/Term.hs')
-rw-r--r--src/Term.hs34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Term.hs b/src/Term.hs
new file mode 100644
index 0000000..081363d
--- /dev/null
+++ b/src/Term.hs
@@ -0,0 +1,34 @@
+module Term
+ ( Term(..)
+ , fromBLC
+ ) where
+
+import Utils
+
+data Term = Abs Term | App Term Term | Idx Int
+ deriving (Eq, Ord)
+
+instance Show Term where
+ showsPrec _ (Abs body) = showString "[" . shows body . showString "]"
+ showsPrec _ (App lhs rhs) =
+ showString "(" . shows lhs . showString " " . shows rhs . showString ")"
+ showsPrec _ (Idx i) = shows i
+
+fromBLC' :: String -> (Term, String)
+fromBLC' inp = case inp of
+ '0' : '0' : rst -> let (e, es) = fromBLC' rst in (Abs e, es)
+ '0' : '1' : rst ->
+ let (exp1, rst1) = fromBLC' rst
+ (exp2, rst2) = fromBLC' rst1
+ in (App exp1 exp2, rst2)
+ '1' : _ : rst -> binaryBruijn rst
+ _ -> invalid
+ where
+ binaryBruijn rst =
+ let idx = length (takeWhile (== '1') inp) - 1
+ in case rst of
+ "" -> (Idx idx, "")
+ _ -> (Idx idx, drop idx rst)
+
+fromBLC :: String -> Term
+fromBLC = fst . fromBLC'