fast-arithmetic-0.1.1.0: ats-src/combinatorics.dats
#define ATS_MAINATSFLAG 1
#include "share/atspre_staload.hats"
#include "contrib/atscntrb-hx-intinf/mylibies.hats"
staload "contrib/atscntrb-hx-intinf/SATS/intinf_vt.sats"
staload UN = "prelude/SATS/unsafe.sats"
// TODO fancy/insane bit-flipping?
fnx fact {n : nat} .<n>. (k : int(n)) : [ n : nat | n > 0 ] intinf(n) =
case+ k of
| 0 => int2intinf(1)
| 1 => int2intinf(1)
| k =>> $UN.castvwtp0(mul_intinf0_int(fact(k - 1), k))
// double factorial http://mathworld.wolfram.com/DoubleFactorial.html
fnx dfact {n : nat} .<n>. (k : int(n)) : Intinf =
case+ k of
| 0 => int2intinf(1)
| 1 => int2intinf(1)
| k =>> let
val x = dfact(k - 2)
val y = mul_intinf0_int(x, k)
in
y
end
// Number of permutations on n objects using k at a time.
fn permutations {n : nat}{ k : nat | k <= n } (n : int(n), k : int(k)) : Intinf =
let
val x = fact(n)
val y = fact(n - k)
val z = div_intinf0_intinf1(x, y)
val _ = intinf_free(y)
in
z
end
// Number of permutations on n objects using k at a time.
fn choose {n : nat}{ m : nat | m <= n } (n : int(n), k : int(m)) : Intinf =
let
fun numerator_loop { m : nat | m > 1 } .<m>. (i : int(m)) : [ n : nat | n > 0 ] intinf(n) =
case+ i of
| 1 => int2intinf(n)
| 2 => $UN.castvwtp0(int2intinf((n - 1) * n))
| i =>> let
val x = numerator_loop(i - 1)
val y = mul_intinf0_int(x, n + 1 - i)
in
$UN.castvwtp0(y)
end
in
case+ k of
| 0 => int2intinf(1)
| 1 => int2intinf(n)
| k =>> let
val x = numerator_loop(k)
val y = fact(k)
val z = div_intinf0_intinf1(x, y)
val _ = intinf_free(y)
in
$UN.castvwtp0(z)
end
end