shrub/j/3/peg.c

50 lines
796 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/3/peg.c
**
** This file is in the public domain.
*/
#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
u3_cqc_peg(
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, f, g, h;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
c = u3_cr_met(0, b);
d = u3_cqa_dec(c);
e = u3_cqc_lsh(0, d, 1);
f = u3_cqa_sub(b, e);
g = u3_cqc_lsh(0, d, a);
h = u3_cqa_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
u3_cwc_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-05 04:18:47 +03:00
if ( (c3n == u3_cr_mean(cor, u3_cv_sam_2, &a, u3_cv_sam_3, &b, 0)) ||
(c3n == u3ud(a)) ||
(c3n == u3ud(b)) ||
2013-09-29 00:21:18 +04:00
(0 == a) ||
(0 == b) )
{
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqc_peg(a, b);
2013-09-29 00:21:18 +04:00
}
}