mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-04 20:54:21 +03:00
145 lines
2.7 KiB
C
145 lines
2.7 KiB
C
/* j/5/jam.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
/* functions
|
|
*/
|
|
static u2_noun
|
|
_jam_in(u2_ch_root* har_u, u2_atom, u2_atom, u2_noun);
|
|
|
|
static u2_noun
|
|
_jam_in_pair(u2_ch_root* har_u,
|
|
u2_atom h_a,
|
|
u2_atom t_a,
|
|
u2_atom b,
|
|
u2_noun l)
|
|
{
|
|
u2_noun w = u2nc(u2nc(2, 1), u2k(l));
|
|
u2_noun x = u2_cqa_add(2, b);
|
|
u2_noun d = _jam_in(har_u, h_a, x, w);
|
|
u2_noun p_d, q_d, r_d;
|
|
u2_noun r;
|
|
|
|
u2_cr_trel(d, &p_d, &q_d, &r_d);
|
|
{
|
|
u2_noun y = u2_cqa_add(x, p_d);
|
|
u2_noun e = _jam_in(har_u, t_a, y, q_d);
|
|
u2_noun p_e, q_e, r_e;
|
|
|
|
u2_cr_trel(e, &p_e, &q_e, &r_e);
|
|
{
|
|
u2_noun z = u2_cqa_add(p_d, p_e);
|
|
|
|
r = u2nt(u2_cqa_add(2, z), u2k(q_e), 0);
|
|
|
|
u2z(z);
|
|
}
|
|
u2z(e);
|
|
u2z(y);
|
|
}
|
|
u2z(d);
|
|
u2z(x);
|
|
u2z(w);
|
|
|
|
return r;
|
|
}
|
|
|
|
static u2_noun
|
|
_jam_in_flat(u2_ch_root* har_u,
|
|
u2_atom a,
|
|
u2_noun l)
|
|
{
|
|
u2_noun d = u2_cqe_mat(a);
|
|
u2_noun x = u2_cqa_add(1, u2h(d));
|
|
u2_noun y = u2nt
|
|
(u2k(x), u2nc(u2nc(x, u2_cqc_lsh(0, 1, u2t(d))), u2k(l)), 0);
|
|
|
|
u2z(d);
|
|
|
|
return y;
|
|
}
|
|
|
|
static u2_noun
|
|
_jam_in_ptr(u2_ch_root* har_u,
|
|
u2_atom u_c,
|
|
u2_noun l)
|
|
{
|
|
u2_noun d = u2_cqe_mat(u_c);
|
|
u2_atom x = u2_cqc_lsh(0, 2, u2t(d));
|
|
u2_atom y = u2_cqa_add(2, u2h(d));
|
|
u2_noun z = u2nt
|
|
(u2k(y), u2nc(u2nc(y, u2_cqc_mix(3, x)), u2k(l)), 0);
|
|
|
|
u2z(d);
|
|
u2z(x);
|
|
|
|
return z;
|
|
}
|
|
|
|
static u2_noun
|
|
_jam_in(u2_ch_root* har_u,
|
|
u2_noun a,
|
|
u2_atom b,
|
|
u2_noun l)
|
|
{
|
|
u2_noun c = u2_ch_get(har_u, u2k(a));
|
|
u2_noun x;
|
|
|
|
if ( u2_none == c ) {
|
|
u2_ch_put(har_u, u2k(a), u2k(b));
|
|
|
|
if ( u2_yes == u2ud(a) ) {
|
|
x = _jam_in_flat(har_u, a, l);
|
|
} else {
|
|
x = _jam_in_pair(har_u, u2h(a), u2t(a), b, l);
|
|
}
|
|
}
|
|
else {
|
|
if ( u2_yes == u2ud(a) && u2_cr_met(0, a) <= u2_cr_met(0, c) ) {
|
|
x = _jam_in_flat(har_u, a, l);
|
|
}
|
|
else {
|
|
x = _jam_in_ptr(har_u, c, l);
|
|
}
|
|
}
|
|
return x;
|
|
}
|
|
|
|
u2_noun
|
|
u2_cqe_jam(u2_atom a)
|
|
{
|
|
u2_ch_root* har_u = u2_ch_new();
|
|
|
|
u2_noun x = _jam_in(har_u, a, 0, u2_nul);
|
|
u2_noun q = u2_cqb_flop(u2h(u2t(x)));
|
|
u2_noun r = u2_cqc_can(0, q);
|
|
|
|
u2z(x);
|
|
u2z(q);
|
|
u2_ch_free(har_u);
|
|
return r;
|
|
}
|
|
u2_noun
|
|
u2_cwe_jam(u2_noun cor)
|
|
{
|
|
u2_noun a;
|
|
|
|
if ( (u2_none == (a = u2_cr_at(u2_cv_sam, cor))) ) {
|
|
return u2_cm_bail(c3__fail);
|
|
} else {
|
|
return u2_cqe_jam(a);
|
|
}
|
|
}
|
|
u2_atom
|
|
u2_cke_jam(u2_noun a)
|
|
{
|
|
u2_atom b = u2_cqe_jam(a);
|
|
|
|
u2z(a);
|
|
return b;
|
|
}
|
|
|