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

◆ compare_elems()

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

Definition at line 104 of file aring-qq-gmp.hpp.

105 {
106 int cmp = mpq_cmp(&f, &g);
107 if (cmp > 0) return 1;
108 if (cmp < 0) return -1;
109 return 0;
110 }