aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Binary.hs
diff options
context:
space:
mode:
authorMarvin Borner2022-08-18 21:01:03 +0200
committerMarvin Borner2022-08-18 23:17:57 +0200
commit078abdd96af165bace8317764221624336b24555 (patch)
treeafcb5ea4d546e3fb48ca0b13dcbb4a6311403927 /src/Binary.hs
parent9148f5d2a82ac7784649bf8a75b4e9b6d87b6cea (diff)
Fixed fromBinary
Diffstat (limited to 'src/Binary.hs')
-rw-r--r--src/Binary.hs17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/Binary.hs b/src/Binary.hs
index 359dea8..4d8a797 100644
--- a/src/Binary.hs
+++ b/src/Binary.hs
@@ -17,24 +17,23 @@ toBinary :: Expression -> String
toBinary (Bruijn x ) = (replicate (x + 1) '1') ++ "0"
toBinary (Abstraction e ) = "00" ++ toBinary e
toBinary (Application exp1 exp2) = "01" ++ (toBinary exp1) ++ (toBinary exp2)
-toBinary _ = "" -- shouldn't happen
+toBinary _ = error "invalid"
fromBinary' :: String -> (Expression, String)
-fromBinary' = \case
+fromBinary' inp = case inp of
'0' : '0' : rst -> let (e, es) = fromBinary' rst in (Abstraction e, es)
'0' : '1' : rst ->
let (exp1, rst1) = fromBinary' rst
(exp2, rst2) = fromBinary' rst1
in (Application exp1 exp2, rst2)
- '1' : '0' : rst -> binaryBruijn rst
- '1' : '1' : rst -> binaryBruijn rst
- _ -> (Bruijn (-1), "")
+ '1' : _ : rst -> binaryBruijn rst
+ _ -> error "invalid"
where
binaryBruijn rst =
- let idx = length . takeWhile (== '1')
- in case length rst of
- 0 -> (Bruijn $ idx rst, "")
- _ -> (Bruijn $ idx rst, drop ((idx rst) + 1) rst)
+ let idx = (length $ takeWhile (== '1') $ inp) - 1
+ in case rst of
+ "" -> (Bruijn $ idx, "")
+ _ -> (Bruijn $ idx, drop idx rst)
fromBinary :: String -> Expression
fromBinary = fst . fromBinary'