Artifact 79c2ccad729f8cf614df41de8591ab0d7d9a88e1d46155d45739a026f553ac9f:
- Executable file
r37/packages/invbase/invbase.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: 1000) [annotate] [blame] [check-ins using] [more...]
- Executable file
r38/packages/invbase/invbase.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: 1000) [annotate] [blame] [check-ins using]
module invbase; % Computing involutive basis of polynomial system. % Authors: Alexey Yu. Zharkov, Yuri A. Blinkov % Saratov University, Astrakhanskaya 83, % Saratov 410071, Russia % e-mail: postmaster@scnit.saratov.su % Copyright A. Zharkov, Y. Blinkov; % all rights reserved. % Minor fixes by John Fitch. create!-package('(invbase invbint invbcomp),'(contrib invbase)); fluid '(CONDS GV HV BV NG GG VARLIST VJETS NC); % globals fluid '(ORDERING REDTAILS); % modes fluid '(PATH TRED STARS); % tracing fluid '(REDUCTIONS NFORMS ZEROS MAXORD TITLE); % statistics fluid '(invsysvars!* !*trinvbase alfa beta shortway thirdway invtempbasis); share invtempbasis; ordering := 'grev; switch trinvbase; gv:=mkvect(1000)$ % p o l y n o m i a l s bv:=mkvect(1000)$ % f l a g (n e w p r o l o n g a t i o n s) endmodule; end;