Powered by Apache

CVS log for OpenXM/src/asir-contrib/packages/src/sm1.rr

[BACK] Up to [local] / OpenXM / src / asir-contrib / packages / src

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.18 / (download) - annotate - [select for diffs], Wed Mar 30 04:45:14 2022 UTC (2 years, 2 months ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.17: +6 -1 lines
Diff to previous 1.17 (colored)

Added an explanation on the behavior of update=4.
  The option update=4 installs cygwin binary distribution (cygwin executables, ox servers and libraries including ox_pari.exe).
  It rollbacks the asir-contrib library to the cygwin binary distribution. Then, you need to do update=1 if you want the latest asir-contrib.
  OpenXM-win may be moved under c:/ProgramData/asir/OpenXM by hand.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Nov 7 06:59:41 2021 UTC (2 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.16: +3 -1 lines
Diff to previous 1.16 (colored)

Bug fix of hilbert when there are duplicated elements in generators.

Revision 1.16 / (download) - annotate - [select for diffs], Tue Oct 27 02:44:16 2020 UTC (3 years, 7 months ago) by takayama
Branch: MAIN
Changes since 1.15: +40 -1 lines
Diff to previous 1.15 (colored)

sm1.reduction_verbose() returns the initial of the reduced element and the order structure used.

Revision 1.15 / (download) - annotate - [select for diffs], Fri Sep 13 05:21:33 2019 UTC (4 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.14: +28 -1 lines
Diff to previous 1.14 (colored)

reduction uses the global variable ring_var in the ox_sm1 server when two args.
Example.
[1837] XM_debug=0$ S=sm1.syz([ [x^2-1,x^3-1,x^4-1],[x]])$
[1838] sm1.auto_reduce(1);
1
[1839] S0=sm1.gb([S[0],[x]]);
[[[-x^2-x-1,x+1,0],[x^2+1,0,-1]],[[0,x,0],[0,0,-1]]]
[1840] sm1.reduction([ [-x^4-x^3-x^2-x,x^3+x^2+x+1,-1], S0[0]]);
[[0,0,0],-1,[[x^2+1,0,0],[1,0,0]],[[-x^2-x-1,x+1,0],[x^2+1,0,-1]]]

Revision 1.14 / (download) - annotate - [select for diffs], Mon Sep 9 23:39:52 2019 UTC (4 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.13: +10 -3 lines
Diff to previous 1.13 (colored)

The output format of needBack=1 is changed.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Aug 31 06:36:28 2019 UTC (4 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.12: +10 -2 lines
Diff to previous 1.12 (colored)

sm1.gb command accepts the needBack option.
Example.
[1834] sm1.gb([[dx^2-x,dx],[x]] | needBack=1);
[[[dx,dx^2-x,1],[dx,dx^2,1]],[gb,1,all,[[dx,dx^2-x,1],[[0,1],[1,0],[-dx,dx^2-x]]]]]

Revision 1.12 / (download) - annotate - [select for diffs], Thu Nov 1 06:43:42 2018 UTC (5 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.11: +47 -1 lines
Diff to previous 1.11 (colored)

sm1.regular_triangulation([A,Weight]);
Example:
Fano_A=[[1,1,1,1,1],
        [3,2,2,2,1],
        [0,1,-1,0,0]]$
sm1.regular_triangulation(Fano_A,[1,1,1,0,1]);

Revision 1.11 / (download) - annotate - [select for diffs], Tue Oct 30 06:29:53 2018 UTC (5 years, 7 months ago) by takayama
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored)

Check if the rank of A = d.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Aug 28 02:43:14 2016 UTC (7 years, 9 months ago) by takayama
Branch: MAIN
Changes since 1.9: +41 -40 lines
Diff to previous 1.9 (colored)

Added SM_nop (300) to the specification.

asirgui --> ox_sm1 by sm1.start() partially works,
but ox_reset(...) still hangs with waiting syncball after getting
(OX_COMMAND,SM_nop)
(We can try it by asir_contrib_update(|update=7); from tomorrow's rsync.)

Revision 1.9 / (download) - annotate - [select for diffs], Tue Jan 22 02:34:35 2013 UTC (11 years, 4 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.8: +13 -1 lines
Diff to previous 1.8 (colored)

Added a usage of sm1.rat_to_p.

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jan 22 01:11:28 2013 UTC (11 years, 4 months ago) by takayama
Branch: MAIN
Changes since 1.7: +42 -2 lines
Diff to previous 1.7 (colored)

Added sm1.integration.
Example: sm1.integration([dt-(3*t^2-x),dx+t],[t,x],[t]);
As to details, see the usage.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Sep 27 00:44:09 2012 UTC (11 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored)

Bug fix for the argument 0.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Aug 26 01:35:43 2012 UTC (11 years, 9 months ago) by takayama
Branch: MAIN
Changes since 1.5: +22 -3 lines
Diff to previous 1.5 (colored)

Added some examples for sm1.ecartd_gb and sm1.ecartd_reduction.
ecartd_gb accepts a list of vectors as an input.
See usages of these functions.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Aug 12 04:50:16 2008 UTC (15 years, 9 months ago) by takayama
Branch: MAIN
CVS Tags: R_1_3_1-2, RELEASE_1_2_3_12
Changes since 1.4: +23 -1 lines
Diff to previous 1.4 (colored)

Added a new function laplace.
Example:
sm1.laplace(dt-(3*t^2-x),[x,t],[t,dt]);

Revision 1.4 / (download) - annotate - [select for diffs], Wed Jun 4 01:46:52 2008 UTC (15 years, 11 months ago) by takayama
Branch: MAIN
Changes since 1.3: +36 -1 lines
Diff to previous 1.3 (colored)

Added a new function
   sm1.mgkz
which gives the modified A-hypergeometric system for given A,w,beta.
See ox_help("sm1.mgkz") as to details.

Revision 1.3 / (download) - annotate - [select for diffs], Fri Jul 29 07:44:53 2005 UTC (18 years, 10 months ago) by takayama
Branch: MAIN
CVS Tags: KNOPPIX_2006, DEB_REL_1_2_3-9
Changes since 1.2: +1 -8 lines
Diff to previous 1.2 (colored)

The function ord is executed in contrib-setord.rr.
This function should be executed before loading other files.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Jul 26 05:52:50 2005 UTC (18 years, 10 months ago) by takayama
Branch: MAIN
Changes since 1.1: +6 -3 lines
Diff to previous 1.1 (colored)

Fixed the trouble on the initialization of static variables.
See src/asir-doc/exp/exp-ja.texi.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Apr 8 05:56:47 2005 UTC (19 years, 1 month ago) by takayama
Branch: MAIN

Renaming:
  dsolv --> dsolv.rr
  gnuplot --> gnuplot.rr
  longname --> longname.rr
  m       --> mathematica.rr
  om      --> om.rr
  phc     --> phc.rr
  sm1     --> sm1.rr
  tigers  --> tigers.rr

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>