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
expr F = f(1)+f(2)+f(3);

$a = 3; // initialize $a
apply {
    maximum $a; // take the maximum of $a at this position for each term
    Multiply g($a);
    $a = $a + 1;
}