PolynomialCategoryLifting(E, Vars, R, P, S)ΒΆ
polycat.spad line 727 [edit on github]
Vars: OrderedSet
R: Join(SemiRng, AbelianMonoid)
P: PolynomialCategory(R, E, Vars)
S: with
This package provides a very general map function, which given a set S
and polynomials over R
with maps from the variables into S
and the coefficients into S
, maps polynomials into S
. S
is assumed to support +
, *
and ^
.
- map: (Vars -> S, R -> S, P) -> S
map(varmap, coefmap, p)
takes avarmap
, a mapping from the variables of polynomialp
intoS
,coefmap
, a mapping from coefficients ofp
intoS
, andp
, and produces a member ofS
using the corresponding arithmetic inS
.