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

◆ operator*=() [1/3]

template<typename MonomType>
const Polynom< MonomType > & BIBasis::Polynom< MonomType >::operator*= ( const MonomType & anotherMonom)

Definition at line 375 of file polynom.hpp.

376 {
377 if (MonomListHead)
378 {
379 for (typename MonomType::Integer i = 0; i < anotherMonom.GetDimIndepend(); ++i)
380 {
381 if (anotherMonom[i])
382 {
383 *this *= i;
384 }
385 }
386 }
387 return *this;
388 }
MonomType * MonomListHead
Definition polynom.hpp:53

References MonomListHead, operator*=(), and Polynom().