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

◆ compare_elems()

int M2::ARingGFM2::compare_elems ( ElementType f,
ElementType g ) const
inline

Definition at line 193 of file aring-m2-gf.hpp.

194 {
195 if (f < g) return -1;
196 if (f > g) return 1;
197 return 0;
198 }