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

◆ compare_elems()

int M2::ARingGFFlint::compare_elems ( const ElementType & f,
const ElementType & g ) const

Definition at line 207 of file aring-gf-flint.cpp.

209{
210 if (f.value > g.value) return GT;
211 if (f.value < g.value) return LT;
212 return EQ;
213}
const int EQ
Definition style.hpp:40
const int GT
Definition style.hpp:41
const int LT
Definition style.hpp:39

References EQ, GT, and LT.