aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Float.bruijn
diff options
context:
space:
mode:
authorMarvin Borner2024-04-13 14:17:48 +0200
committerMarvin Borner2024-04-13 14:18:02 +0200
commit1fb92f42ab77da5311e547ddb56de3e5d3cbf988 (patch)
tree9fd91daa3b3cb8339b7961310e47fc4e867195a5 /std/Float.bruijn
parent4a8db13503392c0198a0ac8444366b1429a40b01 (diff)
Added initial implementation for floats/rationals
Diffstat (limited to 'std/Float.bruijn')
-rw-r--r--std/Float.bruijn19
1 files changed, 0 insertions, 19 deletions
diff --git a/std/Float.bruijn b/std/Float.bruijn
deleted file mode 100644
index c272d2b..0000000
--- a/std/Float.bruijn
+++ /dev/null
@@ -1,19 +0,0 @@
-# MIT License, Copyright (c) 2022 Marvin Borner
-# Arbitrary-precision floating-point arithmetic implementation using
-# (+3.14) = pair (+3) (+14)
-
-# This is completely WIP and only intended as a proof of concept
-
-:import std/Combinator .
-:import std/Number .
-:import std/Pair .
-
-pi (+3) : (+14159)
-
-# generates a float from a normal balanced ternary number
-float! \…:… (+0)
-
-# adds two floating numbers
-# TODO: Carry support
-# - needed: mod, div (?) -> ternary carry != decimal carry
-add zip-with …+…