reform 0.1.0

A symbolic manipulation toolkit which aims to handle expressions with billions of terms, taking up terabytes of diskspace.
Documentation
1
2
3
4
5
6
7
8
9
10
expr F = (1+x)^30;

apply {
    expand;
}

apply {
    id x^n? = f(n?);
    repeat id f(x?{>0},?a) = f(x? - 1,?a) + f(x? - 2,?a);
}