urbit/j/1/div.c

48 lines
811 B
C
Raw Normal View History

2013-09-29 00:21:18 +04:00
/* j/1/div.c
**
** This file is in the public domain.
*/
#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
u3_cqa_div(u3_atom a,
u3_atom b)
2013-09-29 00:21:18 +04:00
{
2014-08-20 01:49:16 +04:00
if ( 0 == b ) {
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
}
2013-09-29 00:21:18 +04:00
else {
2014-11-05 04:18:47 +03:00
if ( _(u3_ca_is_cat(a)) && _(u3_ca_is_cat(b)) ) {
2014-08-25 10:58:38 +04:00
return a / b;
}
else {
mpz_t a_mp, b_mp;
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
u3_cr_mp(a_mp, a);
u3_cr_mp(b_mp, b);
2013-09-29 00:21:18 +04:00
2014-08-25 10:58:38 +04:00
mpz_tdiv_q(a_mp, a_mp, b_mp);
mpz_clear(b_mp);
2013-09-29 00:21:18 +04:00
2014-09-06 00:13:24 +04:00
return u3_ci_mp(a_mp);
2014-08-25 10:58:38 +04:00
}
2013-09-29 00:21:18 +04:00
}
}
2014-09-06 00:13:24 +04:00
u3_noun
u3_cwa_div(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-05 04:18:47 +03:00
if ( (c3n == u3_cr_mean(cor, u3_cv_sam_2, &a, u3_cv_sam_3, &b, 0)) ||
(c3n == u3ud(a)) ||
(c3n == u3ud(b)) )
2013-09-29 00:21:18 +04:00
{
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__exit);
2013-09-29 00:21:18 +04:00
} else {
2014-09-06 00:13:24 +04:00
return u3_cqa_div(a, b);
2013-09-29 00:21:18 +04:00
}
}