Tellsimp and stack overflow.




-----maxima-bounces at math.utexas.edu wrote: -----

>?If?f?needs?to?be additive?in?all?arguments,?we'll?have?to?take?another?look
> at?this.

In share/contrib, we have a declare(xxx, multiadditive):

(%i1) load("multiadditive")$
(%i2) declare(f,multiadditive);
(%o2) done
(%i3) f(a+b,c+d);
(%o3) f(b,d)+f(b,c)+f(a,d)+f(a,c)

--Barton