summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-09-16 20:18:57 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-09-16 20:19:36 -0700
commit20a8ba5e5d546d8962802447d40636ec0cf299c8 (patch)
tree39b4e13f2504b179a02d84004ccf92de4a145c55 /arith.c
parent26c497d7da95a7d3f38bfcf7868ab65378f88007 (diff)
downloadtxr-20a8ba5e5d546d8962802447d40636ec0cf299c8.tar.gz
txr-20a8ba5e5d546d8962802447d40636ec0cf299c8.tar.bz2
txr-20a8ba5e5d546d8962802447d40636ec0cf299c8.zip
Adding complementing function.
* arith.c (logcomp): New function. * eval.c (eval_init): logcomp registered as intrinsic. * lib.h (logcomp) declared. * mpi-patches/add-bitops: Fixed bugs in mp_xor. Implemented mp_comp.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/arith.c b/arith.c
index 82189866..0202f121 100644
--- a/arith.c
+++ b/arith.c
@@ -1611,6 +1611,26 @@ bad:
uw_throwf(error_s, lit("logxor: operation failed on ~s ~s"), a, b, nao);
}
+val logcomp(val a)
+{
+ val b;
+
+ switch (type(a)) {
+ case NUM:
+ return num_fast(~c_num(a));
+ case BGNUM:
+ b = make_bignum();
+ if (mp_comp(mp(a), mp(b)) != MP_OKAY)
+ goto bad;
+ return b;
+ default:
+ uw_throwf(error_s, lit("logcomp: non-integral operand ~s"), a, nao);
+ }
+
+bad:
+ uw_throwf(error_s, lit("logcomp: operation failed on ~s"), a, nao);
+}
+
void arith_init(void)
{
mp_init(&NUM_MAX_MP);