diff options
author | Marvin Borner | 2023-02-26 15:24:50 +0100 |
---|---|---|
committer | Marvin Borner | 2023-02-26 15:24:50 +0100 |
commit | 2d4c48368bd6d2ccca7302e5eb0b0ba3f3cd6581 (patch) | |
tree | 99a8447955fc1aff9e9d496755802708ea24da2d /std/Float.bruijn | |
parent | ddadb33e5cdd8be886a8130222c46dabc084e83c (diff) |
More std functions
Diffstat (limited to 'std/Float.bruijn')
-rw-r--r-- | std/Float.bruijn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/std/Float.bruijn b/std/Float.bruijn new file mode 100644 index 0000000..d3fce4e --- /dev/null +++ b/std/Float.bruijn @@ -0,0 +1,16 @@ +# MIT License, Copyright (c) 2022 Marvin Borner +# Arbitrary-precision floating-point arithmetic implementation using +# (+3.14) = pair (+3) (+14) + +:import std/Combinator . +:import std/Number . +:import std/List . +:import std/Pair P + +# generates a float from a normal balanced ternary number +float! \(P.:) (+0) + +# adds two floating numbers +# TODO: Carry support +# - needed: mod, div (?) -> ternary carry != decimal carry +add P.zip-with (+) |