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

◆ operator==() [1/2]

bool BRP::operator== ( const brMonomial & val) const

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

15{
16 if (val == 0)
17 {
18 return m.empty();
19 }
20 else if (val == 1)
21 {
22 return m.size() == 1 && *(m.begin()) == 0;
23 }
24 return false;
25}
monomials m

References m.