urbit/jets/e/rub.c

80 lines
1.4 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/rub.c
**
*/
#include "all.h"
2014-09-04 07:10:43 +04:00
2013-09-29 00:21:18 +04:00
/* functions
*/
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 17:14:14 +03:00
u3qe_rub(u3_atom a,
u3_atom b)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_atom c, d, e;
u3_atom w, x, y, z;
u3_atom p, q;
2013-09-29 00:21:18 +04:00
2014-11-06 22:13:57 +03:00
u3_atom m = u3qa_add(a, u3r_met(0, b));
2013-09-29 00:21:18 +04:00
// Compute c and d.
{
2014-09-06 00:13:24 +04:00
x = u3k(a);
2013-09-29 00:21:18 +04:00
2014-11-06 22:13:57 +03:00
while ( 0 == u3qc_cut(0, x, 1, b) ) {
u3_atom y = u3qa_inc(x);
2013-09-29 00:21:18 +04:00
// Sanity check: crash if decoding more bits than available
2014-11-06 22:13:57 +03:00
if ( c3y == u3qa_gth(x, m)) {
// fprintf(stderr, "[%%rub-hard %d %d %d]\r\n", a, x, m);
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__exit);
}
2014-09-06 00:13:24 +04:00
u3z(x);
2013-09-29 00:21:18 +04:00
x = y;
}
2014-11-06 03:20:01 +03:00
if ( c3y == u3r_sing(x, a) ) {
2014-09-06 00:13:24 +04:00
u3z(x);
return u3nc(1, 0);
2013-09-29 00:21:18 +04:00
}
2014-11-06 22:13:57 +03:00
c = u3qa_sub(x, a);
d = u3qa_inc(x);
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
u3z(x);
2013-09-29 00:21:18 +04:00
}
2013-09-29 00:21:18 +04:00
// Compute e, p, q.
{
2014-11-06 22:13:57 +03:00
x = u3qa_dec(c);
y = u3qc_bex(x);
z = u3qc_cut(0, d, x, b);
2013-09-29 00:21:18 +04:00
2014-11-06 22:13:57 +03:00
e = u3qa_add(y, z);
2014-09-06 00:13:24 +04:00
u3z(y); u3z(z);
2013-09-29 00:21:18 +04:00
2014-11-06 22:13:57 +03:00
w = u3qa_add(c, c);
y = u3qa_add(w, e);
z = u3qa_add(d, x);
2013-09-29 00:21:18 +04:00
2014-11-06 22:13:57 +03:00
p = u3qa_add(w, e);
q = u3qc_cut(0, z, e, b);
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
u3z(w); u3z(x); u3z(y); u3z(z);
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
return u3nc(p, q);
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 17:14:14 +03:00
u3we_rub(u3_noun cor)
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
u3_noun a, b;
2013-09-29 00:21:18 +04:00
2014-11-18 00:56:51 +03:00
if ( (c3n == u3r_mean(cor, u3x_sam_2, &a, u3x_sam_3, &b, 0)) ||
2014-11-05 04:18:47 +03:00
(c3n == u3ud(a)) ||
(c3n == u3ud(b)) )
2013-09-29 00:21:18 +04:00
{
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qe_rub(a, b);
2013-09-29 00:21:18 +04:00
}
}