aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Number
diff options
context:
space:
mode:
authorMarvin Borner2024-02-29 23:28:51 +0100
committerMarvin Borner2024-02-29 23:28:51 +0100
commitfe0de617cddd2dee11758788c5dc9b7a1c8f330a (patch)
tree26354608f8b8d1573e6fa593ee92460aa0616884 /std/Number
parentf3eefd551566cc07232a8c15d8162738bf1f8fec (diff)
great changes
you gotta believe me, they're great. they're the best
Diffstat (limited to 'std/Number')
-rw-r--r--std/Number/Binary.bruijn13
-rw-r--r--std/Number/Conversion.bruijn22
2 files changed, 17 insertions, 18 deletions
diff --git a/std/Number/Binary.bruijn b/std/Number/Binary.bruijn
index fac9ba1..648af29 100644
--- a/std/Number/Binary.bruijn
+++ b/std/Number/Binary.bruijn
@@ -5,7 +5,6 @@
:import std/Combinator .
:import std/List .
:import std/Logic .
-:import std/Number/Ternary T
# bit indicating a one, compatible with std/Logic
b¹ true ⧗ Bit
@@ -182,16 +181,6 @@ dec [~(0 z a¹ a⁰)] ⧗ Binary → Binary
:test (--(+1b)) ([[[0 2]]])
:test (--(+3b)) ((+2b))
-# converts a binary number to a balanced ternary number
-# TODO: find a better solution
-ternary! z [[[rec]]] (+0t) ⧗ Binary → Ternary
- rec =?0 case-end case-inc
- case-inc 2 (T.inc 1) --0
- case-end 1
-
-:test (ternary! (+0b)) ((+0t))
-:test (ternary! (+42b)) ((+42t))
-
# flips the bits of a binary number (1's complement)
complement [[[[3 2 0 1]]]] ⧗ Binary → Binary
@@ -263,8 +252,6 @@ sub [[(0 =? 1) (+0b) -((pad 1 0) + -(pad 0 1))]] ⧗ Binary → Binary → Binar
:test ((+3b) - (+0b) =? (+3b)) (true)
:test ((+3b) - (+2b) =? (+1b)) (true)
-# TODO: mul/div
-
# rshifts least significant bit of a binary number
div² [~(0 z a¹ a⁰)] ⧗ Binary → Binary
z (+0b) : (+0b)
diff --git a/std/Number/Conversion.bruijn b/std/Number/Conversion.bruijn
index 41ddf38..c79e53f 100644
--- a/std/Number/Conversion.bruijn
+++ b/std/Number/Conversion.bruijn
@@ -1,17 +1,29 @@
# MIT License, Copyright (c) 2024 Marvin Borner
# convert bases to other bases
+:import std/Combinator .
:import std/Number/Unary U
+:import std/Number/Binary B
:import std/Number/Ternary T
# converts unary numbers to ternary
-unary→ternary [0 T.inc (+0)] ⧗ Unary → Ternary
+unary→ternary [0 T.inc (+0t)] ⧗ Unary → Ternary
-:test (unary→ternary (+0u)) ((+0))
-:test (unary→ternary (+2u)) ((+2))
+:test (unary→ternary (+0u)) ((+0t))
+:test (unary→ternary (+2u)) ((+2t))
# converts ternary numbers to unary
ternary→unary [T.apply 0 U.inc (+0u)] ⧗ Ternary → Unary
-:test (ternary→unary (+0)) ((+0u))
-:test (ternary→unary (+2)) ((+2u))
+:test (ternary→unary (+0t)) ((+0u))
+:test (ternary→unary (+2t)) ((+2u))
+
+# converts binary numbers to ternary
+# constructs reversed path of composed functions and applies to ternary
+binary→ternary [y [[[rec]]] [0] 0 (+0t)] ⧗ Binary → Ternary
+ rec B.zero? 0 case-end case-rec
+ case-rec B.odd? 0 (2 (1 ∘ T.inc) (B.dec 0)) (2 (1 ∘ (T.mul (+2t))) (B.div² 0))
+ case-end 1
+
+:test (T.eq? (binary→ternary (+0b)) (+0t)) ([[1]])
+:test (T.eq? (binary→ternary (+42b)) (+42t)) ([[1]])