shrub/jets/c/peg.c

51 lines
743 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/peg.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
u3qc_peg(u3_atom a,
u3_atom b)
2013-09-29 00:21:18 +04:00
{
if ( 1 == b ) {
return u3k(a);
}
2014-09-06 00:13:24 +04:00
u3_atom c, d, e, f, g, h;
2013-09-29 00:21:18 +04:00
2014-11-06 03:20:01 +03:00
c = u3r_met(0, b);
2014-11-06 22:13:57 +03:00
d = u3qa_dec(c);
e = u3qc_lsh(0, d, 1);
f = u3qa_sub(b, e);
g = u3qc_lsh(0, d, a);
h = u3qa_add(f, g);
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
u3z(c);
u3z(d);
u3z(e);
u3z(f);
u3z(g);
2013-09-29 00:21:18 +04:00
return h;
}
2014-09-06 00:13:24 +04:00
u3_noun
2015-08-28 03:48:39 +03:00
u3wc_peg(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)) ||
2013-09-29 00:21:18 +04:00
(0 == a) ||
(0 == b) ||
(c3n == u3ud(b)) ||
(c3n == u3ud(a) && b != 1) )
2013-09-29 00:21:18 +04:00
{
2014-11-06 03:20:01 +03:00
return u3m_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-11-06 22:13:57 +03:00
return u3qc_peg(a, b);
2013-09-29 00:21:18 +04:00
}
}