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

◆ compare_elems()

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

Definition at line 108 of file aring-qq-flint.hpp.

109 {
110 int cmp = fmpq_cmp(&f, &g);
111 if (cmp > 0) return 1;
112 if (cmp < 0) return -1;
113 return 0;
114 }