Macaulay2 Engine
Loading...
Searching...
No Matches

◆ operator*() [2/2]

BRP BRP::operator* ( const BRP & other) const

Definition at line 64 of file franzi-brp.cpp.

65{
66 // other _must_ be a monomial
67 if (other == 0)
68 {
69 std::cout << "Multiplication by 0" << std::endl;
70 return BRP();
71 }
72 else
73 {
74 brMonomial mono = *(other.m.begin());
75 return (*this) * mono;
76 }
77}
monomials m
unsigned long brMonomial

References BRP(), and m.