Powered by Apache

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

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.7 / (download) - annotate - [select for diffs], Mon Feb 1 05:50:23 2016 UTC (8 years, 3 months ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

#define -->  #ifdef  (bug fix)

Revision 1.6 / (download) - annotate - [select for diffs], Fri Sep 12 05:04:01 2014 UTC (9 years, 8 months ago) by takayama
Branch: MAIN
Changes since 1.5: +14 -2 lines
Diff to previous 1.5 (colored)

Change for the new language specification for function arguments.
(Function argument must be the absolute function name.
Relative function name will not be accepted.
Example:
  module test;
  localf foo();
  localf foo2();
  def foo() { print("Hello foo."); }
  def foo2() {
     E=test.foo;  /* E=foo; is not accepted. */
    (*E)();
  }
  endmodule;

Revision 1.5 / (download) - annotate - [select for diffs], Fri Sep 5 11:55:19 2014 UTC (9 years, 8 months ago) by ohara
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Fixed for calling qsort, mapat because of recent changes in module implementation.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Mar 11 01:46:19 2014 UTC (10 years, 2 months ago) by takayama
Branch: MAIN
CVS Tags: RELEASE_1_3_1_13b
Changes since 1.3: +44 -43 lines
Diff to previous 1.3 (colored)

Static variables must be declared before the definitions of the functions.
Bug ticket 2013-03-10-tk_jack.rr-1 is fixed.

Documents on the module is revised.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 10 05:30:58 2014 UTC (10 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

M_beta should be initialized with NaN.

Revision 1.2 / (download) - annotate - [select for diffs], Mon Mar 10 03:04:06 2014 UTC (10 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.1: +30 -5 lines
Diff to previous 1.1 (colored)

Bug: P_pmn seems to be destroyed.
load("./tk_jack.rr");
tk_jack.mh_t([3/2],[7/5],2,2);
returns 0,
but it is wrong.  P_pmn is 3, but it is reset to 0.
Bug ticket: 2014-03-10-tk_jack.rr-1

Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 18 11:41:18 2012 UTC (11 years, 8 months ago) by takayama
Branch: MAIN

It is an implementation of the Koev-Edelman algorithm (Pieri type formula)
to get jack and zonal polynomials.
Examples:
load("tk_jack.rr");
[1434] tk_jack.zonal([3,2,1],3);
(112*x_3*x_2^2+112*x_3^2*x_2)*x_1^3+(112*x_3*x_2^3+168*x_3^2*x_2^2+112*x_3^3*x_2)*x_1^2+(112*x_3^2*x_2^3+112*x_3^3*x_2^2)*x_1
[1435] tk_jack.zonal([1,1],3);
(2*x_2+2*x_3)*x_1+2*x_3*x_2
[1436] tk_jack.jack([1,1],3,2);
(2*x_2+2*x_3)*x_1+2*x_3*x_2
Todo: several optimizations should be done.
      The source should be more clean.

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>