Copyright | (c) Stéphane Laurent 2024 |
---|---|
License | GPL-3 |
Maintainer | laurent_step@outlook.fr |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Evaluation of Jack polynomials, zonal polynomials, Schur polynomials and skew Schur polynomials. See README for examples and references.
Synopsis
- type Partition = [Int]
- jack' :: [Rational] -> Partition -> Rational -> Char -> Rational
- zonal' :: [Rational] -> Partition -> Rational
- schur' :: [Rational] -> Partition -> Rational
- skewSchur' :: [Rational] -> Partition -> Partition -> Rational
- jack :: forall a. (Eq a, C a) => [a] -> Partition -> a -> Char -> a
- zonal :: (Eq a, C a) => [a] -> Partition -> a
- schur :: forall a. C a => [a] -> Partition -> a
- skewSchur :: forall a. (Eq a, C a) => [a] -> Partition -> Partition -> a
Documentation
:: [Rational] | values of the variables |
-> Partition | partition of integers |
-> Rational | Jack parameter |
-> Char | which Jack polynomial, |
-> Rational |
Evaluation of Jack polynomial
Evaluation of zonal polynomial
Evaluation of Schur polynomial
:: [Rational] | values of the variables |
-> Partition | the outer partition of the skew partition |
-> Partition | the inner partition of the skew partition |
-> Rational |
Evaluation of a skew Schur polynomial
:: forall a. (Eq a, C a) | |
=> [a] | values of the variables |
-> Partition | partition of integers |
-> a | Jack parameter |
-> Char | which Jack polynomial, |
-> a |
Evaluation of Jack polynomial
Evaluation of zonal polynomial
Evaluation of Schur polynomial