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

◆ exp_is_zero()

bool SkewMultiplication::exp_is_zero ( const int * exp) const

Definition at line 146 of file skew.cpp.

148{
149 for (int i = 0; i < _n_skew; i++)
150 {
151 int v = _skew_list[i];
152 if (exp[v] >= 2) return true;
153 }
154 return false;
155}

References _n_skew, and _skew_list.