Artifact f220aae7c39dc47a6432a5b048f19fd564a7daf9e71e4eb3d10415f405f8f0d1:
- Executable file
r37/packages/specfn/fps.red
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1247) [annotate] [blame] [check-ins using] [more...]
- Executable file
r38/packages/specfn/fps.red
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1247) [annotate] [blame] [check-ins using]
module fps; % a package for the algorithmic calculation % of Formal Power Series % Author : Wolfram Koepf, ZIB Berlin % REDUCE version by: Winfried Neun, ZIB Berlin. % (September 1994) % |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| % % % % Please report bugs to Winfried Neun, % % Konrad-Zuse-Zentrum % % fuer Informationstechnik Berlin, % % Heilbronner Str. 10 % % 10711 Berlin - Wilmersdorf % % Federal Republic of Germany % % or by email, neun@sc.ZIB-Berlin.de % % % % |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| % create!-package ('(fps simplede substexp linrec hgrsolve constre ratalgo), '(contrib specfn)); packages_to_load limits,factor,specfn,sfgamma; fluid '(ps!:order!-limit); lisp(ps!:order!-limit := 30); algebraic << factor factorial >>; endmodule; end;