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

◆ compare_elems()

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

Definition at line 96 of file aring-zz-gmp.hpp.

97 {
98 int cmp = mpz_cmp(&f, &g);
99 if (cmp > 0) return 1;
100 if (cmp < 0) return -1;
101 return 0;
102 }