I'm calculating a huge term, say
{a,b}::NonCommuting.
{a,b}::Distributable.
{b}::SelfAntiCommuting.
rl := b * b = 0;
def post_process(ex):
substitute( distribute( expand_power(ex) ), rl)
expr := (a + b) ** 12;
and I get the following warning:
Output cell too large (breqn dimension too large), output suppressed.
See /tmp/cdbK3j9vr.tex to debug this.
I know (because I tried) that the expression can still be manipulated if I use
expr := (a + b) ** 12.
How can I increase the tolerance to huge expressions in cadabra-gtk
?