urbit/gen164/5/loss.c

299 lines
6.3 KiB
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/5/loss.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
typedef struct _u2_loss { // loss problem
u2_noun hel; // a as a list
c3_w lel_w; // length of a
2013-09-29 00:21:18 +04:00
c3_w lev_w; // length of b
u2_noun* hev; // b as an array
u2_noun sev; // b as a set of lists
c3_w kct_w; // candidate count
u2_noun* kad; // candidate array
} u2_loss;
// free loss object
//
static void
2013-09-29 00:21:18 +04:00
_flem(u2_loss* loc_u)
{
u2z(loc_u->sev);
{
c3_w i_w;
for ( i_w = 0; i_w < loc_u->kct_w; i_w++ ) {
u2z(loc_u->kad[i_w]);
}
}
free(loc_u->hev);
free(loc_u->kad);
}
// extract lcs - XX don't use the stack like this
//
static u2_noun
_lext(u2_loss* loc_u, u2_noun kad)
{
if ( u2_nul == kad ) {
return u2_nul;
} else {
return u2nc(u2k(loc_u->hev[u2_cr_word(0, u2h(kad))]),
2013-09-29 00:21:18 +04:00
_lext(loc_u, u2t(kad)));
}
}
// extract lcs
2013-09-29 00:21:18 +04:00
//
static u2_noun
_lexs(u2_loss* loc_u)
{
if ( 0 == loc_u->kct_w ) {
return u2_nul;
} else return u2_ckb_flop(_lext(loc_u, loc_u->kad[loc_u->kct_w - 1]));
}
// initialize loss object
//
static void
_lemp(u2_loss* loc_u,
2014-09-04 01:33:18 +04:00
u2_noun hel,
u2_noun hev)
2013-09-29 00:21:18 +04:00
{
loc_u->hel = hel;
loc_u->lel_w = u2_ckb_lent(u2k(hel));
// Read hev into array.
{
c3_w i_w;
2014-04-02 04:47:01 +04:00
loc_u->hev = c3_malloc(u2_ckb_lent(u2k(hev)) * sizeof(u2_noun));
2013-09-29 00:21:18 +04:00
for ( i_w = 0; u2_nul != hev; i_w++ ) {
loc_u->hev[i_w] = u2h(hev);
hev = u2t(hev);
}
loc_u->lev_w = i_w;
}
loc_u->kct_w = 0;
2014-04-02 04:47:01 +04:00
loc_u->kad = c3_malloc(
2013-09-29 00:21:18 +04:00
(1 + c3_min(loc_u->lev_w, loc_u->lel_w)) *
sizeof(u2_noun));
// Compute equivalence classes.
//
loc_u->sev = u2_nul;
{
c3_w i_w;
for ( i_w = 0; i_w < loc_u->lev_w; i_w++ ) {
u2_noun how = loc_u->hev[i_w];
2014-09-04 01:33:18 +04:00
u2_noun hav;
2013-11-12 11:09:11 +04:00
u2_noun teg;
2014-09-04 06:28:15 +04:00
hav = u2_ckdb_get(u2k(loc_u->sev), u2k(how));
teg = u2nc(u2_ci_words(1, &i_w),
2013-09-29 00:21:18 +04:00
(hav == u2_none) ? u2_nul : hav);
2014-09-04 06:28:15 +04:00
loc_u->sev = u2_ckdb_put(loc_u->sev, u2k(how), teg);
2013-09-29 00:21:18 +04:00
}
}
}
// apply
//
static void
_lune(u2_loss* loc_u,
c3_w inx_w,
c3_w goy_w)
{
u2_noun kad;
kad = u2nc(u2_ci_words(1, &goy_w),
(inx_w == 0) ? u2_nul
: u2k(loc_u->kad[inx_w - 1]));
if ( loc_u->kct_w == inx_w ) {
c3_assert(loc_u->kct_w < (1 << 31));
loc_u->kct_w++;
} else {
u2z(loc_u->kad[inx_w]);
}
loc_u->kad[inx_w] = kad;
}
2013-09-29 00:21:18 +04:00
// extend fits top
//
static u2_bean
_hink(u2_loss* loc_u,
c3_w inx_w,
c3_w goy_w)
{
return u2_say
( (loc_u->kct_w == inx_w) ||
(u2_cr_word(0, u2h(loc_u->kad[inx_w])) > goy_w) );
}
// extend fits bottom
//
static u2_bean
_lonk(u2_loss* loc_u,
c3_w inx_w,
c3_w goy_w)
{
return u2_say
( (0 == inx_w) ||
(u2_cr_word(0, u2h(loc_u->kad[inx_w - 1])) < goy_w) );
}
#if 0
// search for first index >= inx_w and <= max_w that fits
// the hink and lonk criteria.
//
static u2_bean
_binka(u2_loss* loc_u,
c3_w* inx_w,
c3_w max_w,
c3_w goy_w)
{
while ( *inx_w <= max_w ) {
if ( u2_no == _lonk(loc_u, *inx_w, goy_w) ) {
return u2_no;
}
if ( u2_yes == _hink(loc_u, *inx_w, goy_w) ) {
return u2_yes;
}
else ++*inx_w;
}
return u2_no;
}
#endif
// search for lowest index >= inx_w and <= max_w for which
// both hink(inx_w) and lonk(inx_w) are true. lonk is false
// if inx_w is too high, hink is false if it is too low.
//
static u2_bean
_bink(u2_loss* loc_u,
c3_w* inx_w,
c3_w max_w,
c3_w goy_w)
{
c3_assert(max_w >= *inx_w);
if ( max_w == *inx_w ) {
if ( u2_no == _lonk(loc_u, *inx_w, goy_w) ) {
return u2_no;
}
if ( u2_yes == _hink(loc_u, *inx_w, goy_w) ) {
return u2_yes;
}
else {
++*inx_w;
return u2_no;
}
}
2013-09-29 00:21:18 +04:00
else {
c3_w mid_w = *inx_w + ((max_w - *inx_w) / 2);
if ( (u2_no == _lonk(loc_u, mid_w, goy_w)) ||
(u2_yes == _hink(loc_u, mid_w, goy_w)) )
2013-09-29 00:21:18 +04:00
{
return _bink(loc_u, inx_w, mid_w, goy_w);
} else {
*inx_w = mid_w + 1;
return _bink(loc_u, inx_w, max_w, goy_w);
}
}
}
static void
_merg(u2_loss* loc_u,
c3_w inx_w,
u2_noun gay)
{
if ( (u2_nul == gay) || (inx_w > loc_u->kct_w) ) {
return;
}
else {
u2_noun i_gay = u2h(gay);
2013-09-29 00:21:18 +04:00
c3_w goy_w = u2_cr_word(0, i_gay);
u2_noun bik;
bik = _bink(loc_u, &inx_w, loc_u->kct_w, goy_w);
2013-09-29 00:21:18 +04:00
if ( u2_yes == bik ) {
_merg(loc_u, inx_w + 1, u2t(gay));
_lune(loc_u, inx_w, goy_w);
}
else {
_merg(loc_u, inx_w, u2t(gay));
}
}
}
// compute lcs
//
static void
_loss(u2_loss* loc_u)
{
while ( u2_nul != loc_u->hel ) {
u2_noun i_hel = u2h(loc_u->hel);
2014-09-04 06:28:15 +04:00
u2_noun guy = u2_ckdb_get(u2k(loc_u->sev), u2k(i_hel));
2013-09-29 00:21:18 +04:00
if ( u2_none != guy ) {
2013-11-12 11:09:11 +04:00
u2_noun gay = u2_ckb_flop(guy);
2013-09-29 00:21:18 +04:00
_merg(loc_u, 0, gay);
u2z(gay);
}
loc_u->hel = u2t(loc_u->hel);
}
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cqe_loss(
u2_noun hel,
u2_noun hev)
2013-09-29 00:21:18 +04:00
{
u2_loss loc_u;
u2_noun lcs;
2013-11-12 11:09:11 +04:00
2013-09-29 00:21:18 +04:00
_lemp(&loc_u, hel, hev);
_loss(&loc_u);
lcs = _lexs(&loc_u);
_flem(&loc_u);
return lcs;
}
static u2_bean
2014-09-04 01:33:18 +04:00
_listp(u2_noun lix)
2013-09-29 00:21:18 +04:00
{
while ( 1 ) {
2013-09-29 00:21:18 +04:00
if ( u2_nul == lix ) return u2_yes;
if ( u2_no == u2du(lix) ) return u2_no;
lix = u2t(lix);
}
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwe_loss(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun hel, hev;
2014-08-20 10:22:41 +04:00
if ( (u2_none == (hel = u2_cr_at(u2_cv_sam_2, cor))) ||
(u2_none == (hev = u2_cr_at(u2_cv_sam_3, cor))) ||
2013-09-29 00:21:18 +04:00
(u2_no == _listp(hel)) ||
(u2_no == _listp(hev)) )
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-09-04 01:33:18 +04:00
return u2_cqe_loss(hel, hev);
2013-09-29 00:21:18 +04:00
}
}