shrub/j/3/peg.c

50 lines
802 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-04 01:33:18 +04:00
u2_noun
2014-09-03 07:36:29 +04:00
u2_cqc_peg(
2014-09-04 01:33:18 +04:00
u2_atom a,
u2_atom b)
2013-09-29 00:21:18 +04:00
{
u2_atom c, d, e, f, g, h;
2014-08-20 05:39:48 +04:00
c = u2_cr_met(0, b);
2014-09-03 07:36:29 +04:00
d = u2_cqa_dec(c);
e = u2_cqc_lsh(0, d, 1);
f = u2_cqa_sub(b, e);
g = u2_cqc_lsh(0, d, a);
h = u2_cqa_add(f, g);
2013-09-29 00:21:18 +04:00
2014-08-20 05:39:48 +04:00
u2z(c);
u2z(d);
u2z(e);
u2z(f);
u2z(g);
2013-09-29 00:21:18 +04:00
return h;
}
2014-09-04 01:33:18 +04:00
u2_noun
2014-09-03 09:46:55 +04:00
u2_cwc_peg(
2014-09-04 01:33:18 +04:00
u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a, b;
2014-08-20 05:39:48 +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
(0 == a) ||
(0 == b) )
{
2014-08-20 05:39:48 +04:00
return u2_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-03 07:36:29 +04:00
return u2_cqc_peg(a, b);
2013-09-29 00:21:18 +04:00
}
}