2013-09-29 00:21:18 +04:00
|
|
|
/* j/3/can.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
|
2014-11-06 22:13:57 +03:00
|
|
|
u3qc_can(u3_atom a,
|
2015-08-28 04:14:03 +03:00
|
|
|
u3_noun b)
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-11-06 03:20:01 +03:00
|
|
|
if ( !_(u3a_is_cat(a)) || (a >= 32) ) {
|
|
|
|
return u3m_bail(c3__fail);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-08-20 05:39:48 +04:00
|
|
|
c3_g a_g = a;
|
|
|
|
c3_w tot_w = 0;
|
|
|
|
c3_w* sal_w;
|
2014-04-22 05:22:11 +04:00
|
|
|
|
2013-09-29 00:21:18 +04:00
|
|
|
/* Measure and validate the slab required.
|
|
|
|
*/
|
|
|
|
{
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun cab = b;
|
2013-09-29 00:21:18 +04:00
|
|
|
|
|
|
|
while ( 1 ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun i_cab, pi_cab, qi_cab;
|
2013-09-29 00:21:18 +04:00
|
|
|
|
2014-08-20 05:39:48 +04:00
|
|
|
if ( 0 == cab ) {
|
2013-09-29 00:21:18 +04:00
|
|
|
break;
|
|
|
|
}
|
2014-11-06 03:20:01 +03:00
|
|
|
if ( c3n == u3du(cab) ) return u3m_bail(c3__fail);
|
2014-09-06 00:13:24 +04:00
|
|
|
i_cab = u3h(cab);
|
2014-11-06 03:20:01 +03:00
|
|
|
if ( c3n == u3du(i_cab) ) return u3m_bail(c3__fail);
|
2014-09-06 00:13:24 +04:00
|
|
|
pi_cab = u3h(i_cab);
|
|
|
|
qi_cab = u3t(i_cab);
|
2014-11-06 03:20:01 +03:00
|
|
|
if ( c3n == u3a_is_cat(pi_cab) ) return u3m_bail(c3__fail);
|
|
|
|
if ( c3n == u3ud(qi_cab) ) return u3m_bail(c3__fail);
|
|
|
|
if ( (tot_w + pi_cab) < tot_w ) return u3m_bail(c3__fail);
|
2014-08-22 05:40:06 +04:00
|
|
|
|
2013-09-29 00:21:18 +04:00
|
|
|
tot_w += pi_cab;
|
2014-09-06 00:13:24 +04:00
|
|
|
cab = u3t(cab);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
if ( 0 == tot_w ) {
|
2014-08-20 05:39:48 +04:00
|
|
|
return 0;
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
2014-11-06 03:20:01 +03:00
|
|
|
if ( 0 == (sal_w = u3a_slaq(a_g, tot_w)) ) {
|
|
|
|
return u3m_bail(c3__fail);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chop the list atoms in.
|
|
|
|
*/
|
|
|
|
{
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun cab = b;
|
2013-09-29 00:21:18 +04:00
|
|
|
c3_w pos_w = 0;
|
|
|
|
|
2014-08-20 05:39:48 +04:00
|
|
|
while ( 0 != cab ) {
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun i_cab = u3h(cab);
|
|
|
|
u3_atom pi_cab = u3h(i_cab);
|
|
|
|
u3_atom qi_cab = u3t(i_cab);
|
2013-09-29 00:21:18 +04:00
|
|
|
|
2014-11-06 03:20:01 +03:00
|
|
|
u3r_chop(a_g, 0, pi_cab, pos_w, sal_w, qi_cab);
|
2013-09-29 00:21:18 +04:00
|
|
|
pos_w += pi_cab;
|
2014-09-06 00:13:24 +04:00
|
|
|
cab = u3t(cab);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
2014-11-06 03:20:01 +03:00
|
|
|
return u3a_malt(sal_w);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
2014-09-06 00:13:24 +04:00
|
|
|
u3_noun
|
2014-11-06 22:13:57 +03:00
|
|
|
u3wc_can(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)) ||
|
2014-11-05 04:18:47 +03:00
|
|
|
(c3n == u3ud(a)) )
|
2013-09-29 00:21:18 +04:00
|
|
|
{
|
2014-11-06 03:20:01 +03:00
|
|
|
return u3m_bail(c3__fail);
|
2013-09-29 00:21:18 +04:00
|
|
|
} else {
|
2014-11-06 22:13:57 +03:00
|
|
|
return u3qc_can(a, b);
|
2013-09-29 00:21:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|