diff options
author | Marvin Borner | 2023-02-23 21:10:15 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-23 21:10:15 +0100 |
commit | 23536b41ba46d45d2c61cb77bbad5bbfa6cd1ce3 (patch) | |
tree | be173b86bfd52dce4933e5b0686cddf5a9eeb52e /src/Helper.hs | |
parent | 078734c1a310300c8121022103f1b4ca9bd1b5f2 (diff) |
More humanification
Diffstat (limited to 'src/Helper.hs')
-rw-r--r-- | src/Helper.hs | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/src/Helper.hs b/src/Helper.hs index a0a563a..7c49815 100644 --- a/src/Helper.hs +++ b/src/Helper.hs @@ -262,7 +262,11 @@ matchingFunctions e (Environment env) = -- TODO: Expression -> Maybe Char is missing maybeHumanifyExpression :: Expression -> Maybe String -maybeHumanifyExpression e = ternaryToDecimal e <|> decodeStdout e +maybeHumanifyExpression e = + binaryToDecimal e + <|> ternaryToDecimal e + <|> unaryToDecimal e + <|> decodeStdout e humanifyExpression :: Expression -> String humanifyExpression e = case maybeHumanifyExpression e of @@ -297,6 +301,39 @@ decimalToUnary n | otherwise = Abstraction $ Abstraction $ gen n gen 0 = Bruijn 0 gen n' = Application (Bruijn 1) (gen (n' - 1)) +unaryToDecimal :: Expression -> Maybe String +unaryToDecimal e = do + res <- resolve e + return $ show $ (sum res :: Integer) + where + multiplier (Bruijn 1) = Just 1 + multiplier _ = Nothing + resolve' (Bruijn 0) = Just [] + resolve' (Application x@(Bruijn _) (Bruijn 0)) = + (:) <$> multiplier x <*> Just [] + resolve' (Application x@(Bruijn _) xs@(Application _ _)) = + (:) <$> (multiplier x) <*> (resolve' xs) + resolve' _ = Nothing + resolve (Abstraction (Abstraction n)) = resolve' n + resolve _ = Nothing + +binaryToDecimal :: Expression -> Maybe String +binaryToDecimal e = do + res <- resolve e + return $ show $ (sum $ zipWith (*) res (iterate (* 2) 1) :: Integer) + where + multiplier (Bruijn 0) = Just 0 + multiplier (Bruijn 1) = Just 1 + multiplier _ = Nothing + resolve' (Bruijn 2) = Just [] + resolve' (Application x@(Bruijn _) (Bruijn 2)) = + (:) <$> multiplier x <*> Just [] + resolve' (Application x@(Bruijn _) xs@(Application _ _)) = + (:) <$> (multiplier x) <*> (resolve' xs) + resolve' _ = Nothing + resolve (Abstraction (Abstraction (Abstraction n))) = resolve' n + resolve _ = Nothing + ternaryToDecimal :: Expression -> Maybe String ternaryToDecimal e = do res <- resolve e @@ -306,6 +343,7 @@ ternaryToDecimal e = do multiplier (Bruijn 1) = Just 1 multiplier (Bruijn 2) = Just (-1) multiplier _ = Nothing + resolve' (Bruijn 3) = Just [] resolve' (Application x@(Bruijn _) (Bruijn 3)) = (:) <$> multiplier x <*> Just [] resolve' (Application x@(Bruijn _) xs@(Application _ _)) = |