コード例 #1
0
 def _schur_p(cls, num_variables, mu, nu):  # noqa
     tableaux = Tableau.count_semistandard_shifted_marked(
         num_variables, mu, nu, diagonal_primes=False)
     return cls._vectorize(num_variables, tableaux)
コード例 #2
0
 def _schur_q(cls, num_variables, mu, nu):  # noqa
     tableaux = Tableau.count_semistandard_shifted_marked(
         num_variables, mu, nu)
     return cls._vectorize(num_variables, tableaux)