Tellsimp and stack overflow.
- Subject: Tellsimp and stack overflow.
- From: Barton Willis
- Date: Wed, 23 Jun 2010 13:55:58 -0500
-----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