Building |
INT b_skn_s(OP self,koeff,next,result)
INT m_skn_s(OP self,koeff,next,result)
INT b_pa_s(OP part,result)
INT m_pa_s(OP part,result)
INT b_v_s(OP vec, result)
INT m_v_s(OP vec, result)
INT outerproduct_schur(OP parta,partb,result)
INT compute_schur_with_alphabet(OP part,laenge,erg)
Example:Expansion of a complete symmetric function:... scan(PARTITION,a); scan(INTEGER,b); compute_schur_with_alphabet(a,b,c);println(c); ...
INT compute_complete_with_alphabet(OP num,length,res)
INT compute_monomial_with_alphabet(OP num,length,res)
Example:Expansion of power sum symmetric functions:... scan(PARTITION,a); scan(INTEGER,b); compute_monomial_with_alphabet(a,b,c); println(c); ...
INT compute_power_with_alphabet(OP label,laenge,erg)
INT compute_schur_with_alphabet_det(OP part,length,erg)
INT compute_skewschur_with_alphabet _det(OP sp,l,res)
Example:The evaluation of the Hall-Littlewood polynomials:... scan(SKEWPARTITION,a); scan(INTEGER,b); compute_skewschur_with_alphabet_det(a,b,d);println(d); ...
Building |