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

◆ operator*=() [2/3]

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

Definition at line 391 of file polynom.hpp.

392 {
393 if (MonomListHead)
394 {
398
399 while (iteratorAnother)
400 {
401 tmpPolynom = new Polynom<MonomType>(*this);
404 delete tmpPolynom;
406 }
407 SetZero();
410 delete tmpResult;
411 }
412 return *this;
413 }
MonomType * MonomListHead
Definition polynom.hpp:53
void MergeWith(Polynom &anotherPolynom)
Definition polynom.hpp:622

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