shrub/gen164/5/rub.c

91 lines
2.0 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/rub.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
u2_noun // produce
2014-08-20 10:22:41 +04:00
j2_mby(Pt5, rub)(
2013-09-29 00:21:18 +04:00
u2_atom a, // retain
u2_atom b) // retain
{
u2_atom c, d, e;
u2_atom w, x, y, z;
u2_atom p, q;
2014-08-20 10:22:41 +04:00
u2_atom m = j2_mbc(Pt1, add)(a, u2_cr_met(0, b));
2013-09-29 00:21:18 +04:00
// Compute c and d.
{
2014-08-20 10:22:41 +04:00
x = u2k(a);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
while ( 0 == j2_mbc(Pt3, cut)(0, x, 1, b) ) {
u2_atom y = j2_mbc(Pt1, inc)(x);
2013-09-29 00:21:18 +04:00
// Sanity check: crash if decoding more bits than available
2014-08-20 10:22:41 +04:00
if ( u2_yes == j2_mbc(Pt1, gth)(x, m)) {
// fprintf(stderr, "[%%rub-hard %d %d %d]\r\n", a, x, m);
2014-08-20 10:22:41 +04:00
return u2_cm_bail(c3__exit);
}
2014-08-20 10:22:41 +04:00
u2z(x);
2013-09-29 00:21:18 +04:00
x = y;
}
2014-08-20 10:22:41 +04:00
if ( u2_yes == u2_cr_sing(x, a) ) {
u2z(x);
return u2nc(1, 0);
2013-09-29 00:21:18 +04:00
}
2014-08-20 10:22:41 +04:00
c = j2_mbc(Pt1, sub)(x, a);
d = j2_mbc(Pt1, inc)(x);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
u2z(x);
2013-09-29 00:21:18 +04:00
}
2013-09-29 00:21:18 +04:00
// Compute e, p, q.
{
2014-08-20 10:22:41 +04:00
x = j2_mbc(Pt1, dec)(c);
y = j2_mbc(Pt3, bex)(x);
z = j2_mbc(Pt3, cut)(0, d, x, b);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
e = j2_mbc(Pt1, add)(y, z);
u2z(y); u2z(z);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
w = j2_mbc(Pt1, add)(c, c);
y = j2_mbc(Pt1, add)(w, e);
z = j2_mbc(Pt1, add)(d, x);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
p = j2_mbc(Pt1, add)(w, e);
q = j2_mbc(Pt3, cut)(0, z, e, b);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
u2z(w); u2z(x); u2z(y); u2z(z);
2013-09-29 00:21:18 +04:00
2014-08-20 10:22:41 +04:00
return u2nc(p, q);
2013-09-29 00:21:18 +04:00
}
}
u2_noun // transfer
2014-08-20 10:22:41 +04:00
j2_mb(Pt5, rub)(
2013-09-29 00:21:18 +04:00
u2_noun cor) // retain
{
u2_noun a, b;
2014-08-20 10:22:41 +04:00
if ( (u2_no == u2_cr_mean(cor, u2_cv_sam_2, &a, u2_cv_sam_3, &b, 0)) ||
(u2_no == u2ud(a)) ||
(u2_no == u2ud(b)) )
2013-09-29 00:21:18 +04:00
{
2014-08-20 10:22:41 +04:00
return u2_cm_bail(c3__fail);
2013-09-29 00:21:18 +04:00
} else {
2014-08-20 10:22:41 +04:00
return j2_mby(Pt5, rub)(a, b);
2013-09-29 00:21:18 +04:00
}
}
/* structures
*/
u2_ho_jet
2013-09-29 00:21:18 +04:00
j2_mbj(Pt5, rub)[] = {
{ ".2", c3__hevy, j2_mb(Pt5, rub), Tier5, u2_none, u2_none },
2013-09-29 00:21:18 +04:00
{ }
};