예제 #1
0
파일: Poly.hpp 프로젝트: pglass/cpp_maths
void operator*=(Term& x, const Term& y) {
    Term::map_citer_t it;
    for (it = y.factors.begin(); it != y.factors.end(); ++it)
        x.appendFactor(it->second);
    x.coeff *= y.coeff;
}
예제 #2
0
파일: Poly.hpp 프로젝트: pglass/cpp_maths
void operator*=(Term& x, const Factor& y) {
    x.appendFactor(y);
}