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

◆ syzygy()

void M2::ARingGFM2::syzygy ( ElementType a,
ElementType b,
ElementType & x,
ElementType & y ) const
inline

Definition at line 385 of file aring-m2-gf.hpp.

392 {
393 assert(a != 0);
394 assert(b != 0);
395 x = mGF.one();
396 divide(y, a, b);
397 negate(y, y);
398 }
void divide(elem &result, elem a, elem b) const
void negate(elem &result, elem a) const
GaloisFieldTable mGF
volatile int x

References divide(), mGF, negate(), and x.