shrub/gen164/1/add.c

45 lines
777 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/1/add.c
**
** This file is in the public domain.
*/
#include "all.h"
#include "../pit.h"
/* functions
*/
2014-09-04 01:33:18 +04:00
u2_noun
u2_cqa_add(u2_atom a,
u2_atom b)
2013-09-29 00:21:18 +04:00
{
2014-08-25 10:58:38 +04:00
if ( u2_so(u2_co_is_cat(a)) && u2_so(u2_co_is_cat(b)) ) {
c3_w c = a + b;
2013-09-29 00:21:18 +04:00
2014-08-25 10:58:38 +04:00
return u2_ci_words(1, &c);
}
else {
mpz_t a_mp, b_mp;
u2_cr_mp(a_mp, a);
u2_cr_mp(b_mp, b);
2013-09-29 00:21:18 +04:00
2014-08-25 10:58:38 +04:00
mpz_add(a_mp, a_mp, b_mp);
mpz_clear(b_mp);
2013-09-29 00:21:18 +04:00
2014-08-25 10:58:38 +04:00
return u2_ci_mp(a_mp);
}
2013-09-29 00:21:18 +04:00
}
2014-09-04 01:33:18 +04:00
u2_noun
u2_cwa_add(u2_noun cor)
2013-09-29 00:21:18 +04:00
{
u2_noun a, b;
2014-08-20 01:49:16 +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
{
2014-08-20 01:49:16 +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_cqa_add(a, b);
2013-09-29 00:21:18 +04:00
}
}