codecov/changes
measure? and what does codecov/project
?
friend UnivariateExprPolynomial operator+(a, b)
instead of UnivariateExprPolynomial &operator+(a)
?
a + b
to work where a
is of a type implicitly converted to a UnivariateExprPolynomial
and b
is a UnivariateExprPolynomial
UnivariateExprPolynomial &operator+(const UnivariateExprPolynomial &other)
?
b
be a polynomial. What is the function that gives 1 + b
?
b + 1
be handled?
b + 1
and 1 + b
are handled in friend UnivariateExprPolynomial operator+(a, b)
operator+(typeA a, typeA b)
will be called?
UnivariateExprPolynomial a = 1
works and has been defined by us, right?
1+1
. There's both operator+(typeA a, typeA b)
and operator+(int a, int b)
?
UnivariateIntPolynomial
?
UnivariatePolynomial
level, and instead done at UnivariateExprPolynomial
level?
UnivariateExprPolynomial
is also used in UnivariateSeries
, and UnivariateSeries
already has some of the information that's in UnivariatePolynomial
.