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

◆ operator()()

bool ReducedGB_Field_Local_sorter::operator() ( int xx,
int yy )
inline

Definition at line 71 of file reducedgb-field-local.cpp.

72 {
73 // this is the < operation
74 if (degs[xx] < degs[yy]) return true;
75 if (degs[xx] > degs[yy]) return false;
76 gbvector *x = gb[xx].f;
77 gbvector *y = gb[yy].f;
78 return R->gbvector_compare(F, x, y) == LT;
79 }
void gb(IntermediateBasis &F, int n)
volatile int x
const int LT
Definition style.hpp:39

References degs, F, gb(), LT, R, and x.