aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2022-07-27 01:19:44 +0200
committerMarvin Borner2022-07-28 01:05:09 +0200
commitac513ff24c78ad0cb008c08c25bf48b4464fff6b (patch)
tree05bc1b562d106de164f5baec6a2dfc4a93113b7b
parent2502b1adb0243eb61b156920a6df389c3f883ac4 (diff)
Future
-rw-r--r--README.md15
-rw-r--r--src/Eval.hs11
2 files changed, 19 insertions, 7 deletions
diff --git a/README.md b/README.md
index 314a388..2b75dbd 100644
--- a/README.md
+++ b/README.md
@@ -14,8 +14,15 @@ Bruijn indices written in Haskell.
- Balanced ternary allows negative numbers while having a reasonably
compact representation, operator and time complexity (in comparison
to unary/binary church numerals)\[1\]
+- Arbitrary-precision floating-point artihmetic using balanced ternary
+ numerals
- Highly space-efficient compilation to binary lambda calculus
(BLC)\[2\]\[3\] additionally to normal interpretation and REPL
+- Use BLC compilation in combination with generative asymmetric
+ numeral systems (ANS/FSE)\[4\] as incredibly effective compressor
+- Contracts as a form of typing because typing while guaranteeing
+ turing-completeness isn’t a trivial
+ [problem](https://cstheory.stackexchange.com/a/31321) in LC
- Recursion can be implemented using combinators such as Y or ω
- Included standard library featuring many useful functions (see
`std/`)
@@ -84,8 +91,8 @@ is only syntactic sugar for its internal balanced ternary
representation. We use balanced ternary because it’s a great compromise
between performance and size (according to \[1\]).
-You don’t have to care about the internal side too much though, if you
-use the included operations from the standard library. The REPL even
+You don’t have to care about the internals too much though as long as
+you use the included operations from the standard library. The REPL even
tries its best at displaying expressions that look like ternary numbers
as decimal numbers in paranthesis next to it.
@@ -105,7 +112,7 @@ You can try these by experimenting in the REPL or by running them as a
file. Note, however, that you need an equal sign between the function
name and its definition if you’re using the REPL.
-Plain execution:
+Plain execution without any predefined functions:
# this is a comment
# we now define a function returning a ternary 1
@@ -217,3 +224,5 @@ argument.
Randomness and Complexity, from Leibniz to Chaitin. 2007. 237-260.
- \[3\] Tromp, John. “Functional Bits: Lambda Calculus based
Algorithmic Information Theory.” (2022).
+- \[4\] Duda, Jarek. “Asymmetric numeral systems.” arXiv preprint
+ arXiv:0902.0271 (2009).
diff --git a/src/Eval.hs b/src/Eval.hs
index c9c784e..e0ad17a 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -231,8 +231,11 @@ runRepl = do
usage :: IO ()
usage = do
putStrLn "Invalid arguments. Use 'bruijn [option] path' instead"
- putStrLn "-c\tcompile path to binary-BLC"
- putStrLn "-C\tcompile path to ASCII-BLC"
+ putStrLn "-o\toptimize path"
+ putStrLn "-c\tcompress path to binary-BLC"
+ putStrLn "-C\tcompress path to ASCII-BLC"
+ putStrLn "-b\tcompile path to binary-BLC"
+ putStrLn "-B\tcompile path to ASCII-BLC"
putStrLn "-e\texecute path as binary-BLC"
putStrLn "-E\texecute path as ASCII-BLC"
putStrLn "-*\tshow this help"
@@ -243,10 +246,10 @@ evalMain = do
args <- getArgs
case args of
[] -> runRepl
- ["-c", path] -> evalFile path
+ ["-b", path] -> evalFile path
(Byte.putStr . Bit.realizeBitStringStrict)
(toBitString . toBinary)
- ["-C", path] -> evalFile path putStrLn toBinary
+ ["-B", path] -> evalFile path putStrLn toBinary
["-e", path] ->
exec path (try . Byte.readFile) (fromBitString . Bit.bitString)
["-E", path] -> exec path (try . readFile) id