C - ring element typepublic interface RingElem<C extends RingElem<C>> extends AbelianGroupElem<C>, MonoidElem<C>
| Modifier and Type | Method and Description |
|---|---|
C[] |
egcd(C b)
Extended greatest common divisor.
|
C |
gcd(C b)
Greatest common divisor.
|
default C |
leftGcd(C b)
Left greatest common divisor.
|
default C |
rightGcd(C b)
Right greatest common divisor.
|
abs, isZERO, negate, signum, subtract, sumdivide, inverse, isONE, isUnit, leftDivide, leftRemainder, multiply, power, quotientRemainder, remainder, rightDivide, rightRemainder, twosidedDivide, twosidedRemainderC[] egcd(C b)
b - other element.default C leftGcd(C b)
b - other element.