diff options
author | Marvin Borner | 2024-02-29 23:28:51 +0100 |
---|---|---|
committer | Marvin Borner | 2024-02-29 23:28:51 +0100 |
commit | fe0de617cddd2dee11758788c5dc9b7a1c8f330a (patch) | |
tree | 26354608f8b8d1573e6fa593ee92460aa0616884 /std/Number/Conversion.bruijn | |
parent | f3eefd551566cc07232a8c15d8162738bf1f8fec (diff) |
great changes
you gotta believe me, they're great. they're the best
Diffstat (limited to 'std/Number/Conversion.bruijn')
-rw-r--r-- | std/Number/Conversion.bruijn | 22 |
1 files changed, 17 insertions, 5 deletions
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]]) |