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

◆ compare_elems()

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

Definition at line 101 of file aring-RRi.hpp.

102 {
103 int cmp = mpfi_cmp(&f, &g);
104 if (cmp < 0) return -1;
105 if (cmp > 0) return 1;
106 return 0;
107 }