aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Helper.hs
diff options
context:
space:
mode:
authorMarvin Borner2023-02-24 15:31:45 +0100
committerMarvin Borner2023-02-24 15:31:45 +0100
commitc371838c15ab245bd9b1db3947747c431a95040e (patch)
tree44f765f51bb082d3fe45eee6231bdeef84737921 /src/Helper.hs
parent3f20e501464fc31d0b10bbe004a2aae71aea38a4 (diff)
Humanification of lists
Diffstat (limited to 'src/Helper.hs')
-rw-r--r--src/Helper.hs23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/Helper.hs b/src/Helper.hs
index 7c49815..9bc2fb0 100644
--- a/src/Helper.hs
+++ b/src/Helper.hs
@@ -260,19 +260,26 @@ matchingFunctions e (Environment env) =
(\EnvDef { _exp = e' } -> e == e')
env
--- TODO: Expression -> Maybe Char is missing
+-- TODO: Show binary as char if in ascii range (=> + humanify strings)
maybeHumanifyExpression :: Expression -> Maybe String
maybeHumanifyExpression e =
- binaryToDecimal e
+ unaryToDecimal e
+ <|> binaryToDecimal e
<|> ternaryToDecimal e
- <|> unaryToDecimal e
- <|> decodeStdout e
+ <|> humanifyList e
humanifyExpression :: Expression -> String
humanifyExpression e = case maybeHumanifyExpression e of
- Nothing -> show e
+ Nothing -> ""
Just h -> h
+humanifyList :: Expression -> Maybe String
+humanifyList e = do
+ es <- unlistify e
+ let conv x = maybe (show x) id (maybeHumanifyExpression x)
+ m = map conv es
+ pure $ "{" <> intercalate ", " m <> "}"
+
---
-- Dec to Bal3 in Bruijn encoding: reversed application with 0=>0; 1=>1; T=>2; end=>3
@@ -304,7 +311,7 @@ decimalToUnary n | otherwise = Abstraction $ Abstraction $ gen n
unaryToDecimal :: Expression -> Maybe String
unaryToDecimal e = do
res <- resolve e
- return $ show $ (sum res :: Integer)
+ return $ show (sum res :: Integer) <> "u"
where
multiplier (Bruijn 1) = Just 1
multiplier _ = Nothing
@@ -320,7 +327,7 @@ unaryToDecimal e = do
binaryToDecimal :: Expression -> Maybe String
binaryToDecimal e = do
res <- resolve e
- return $ show $ (sum $ zipWith (*) res (iterate (* 2) 1) :: Integer)
+ return $ show (sum $ zipWith (*) res (iterate (* 2) 1) :: Integer) <> "b"
where
multiplier (Bruijn 0) = Just 0
multiplier (Bruijn 1) = Just 1
@@ -337,7 +344,7 @@ binaryToDecimal e = do
ternaryToDecimal :: Expression -> Maybe String
ternaryToDecimal e = do
res <- resolve e
- return $ show $ (sum $ zipWith (*) res (iterate (* 3) 1) :: Integer)
+ return $ show (sum $ zipWith (*) res (iterate (* 3) 1) :: Integer) <> "t"
where
multiplier (Bruijn 0) = Just 0
multiplier (Bruijn 1) = Just 1