mirror of
https://github.com/urbit/shrub.git
synced 2024-12-18 07:42:20 +03:00
54 lines
899 B
C
54 lines
899 B
C
/* j/1/mul.c
|
|
**
|
|
** This file is in the public domain.
|
|
*/
|
|
#include "all.h"
|
|
|
|
|
|
/* functions
|
|
*/
|
|
u2_noun
|
|
u2_cqa_mul(u2_atom a,
|
|
u2_atom b)
|
|
{
|
|
if ( u2_so(u2_co_is_cat(a)) && u2_so(u2_co_is_cat(b)) ) {
|
|
c3_d c = ((c3_d) a) * ((c3_d) b);
|
|
|
|
return u2_ci_chubs(1, &c);
|
|
}
|
|
else {
|
|
mpz_t a_mp, b_mp;
|
|
|
|
u2_cr_mp(a_mp, a);
|
|
u2_cr_mp(b_mp, b);
|
|
|
|
mpz_mul(a_mp, a_mp, b_mp);
|
|
mpz_clear(b_mp);
|
|
|
|
return u2_ci_mp(a_mp);
|
|
}
|
|
}
|
|
u2_noun
|
|
u2_cwa_mul(u2_noun cor)
|
|
{
|
|
u2_noun a, b;
|
|
|
|
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)) )
|
|
{
|
|
return u2_cm_bail(c3__exit);
|
|
} else {
|
|
return u2_cqa_mul(a, b);
|
|
}
|
|
}
|
|
u2_noun
|
|
u2_cka_mul(u2_noun a, u2_noun b)
|
|
{
|
|
u2_noun c = u2_cqa_mul(a, b);
|
|
|
|
u2z(a); u2z(b);
|
|
return c;
|
|
}
|
|
|