Interface GroupMultiplicative<G>
-
- All Superinterfaces:
javolution.lang.Immutable,Structure<G>,javolution.lang.ValueType
- All Known Subinterfaces:
Field<F>
- All Known Implementing Classes:
Amount,Complex,Float64,FloatingPoint,ModuloInteger,Parameter,Rational,RationalFunction,Real
public interface GroupMultiplicative<G> extends Structure<G>
This interface represents a structure with a binary multiplicative operation (·), satisfying the group axioms (associativity, neutral element, inverse element and closure).- Version:
- 3.0, February 13, 2006
- Author:
- Jean-Marie Dautelle
- See Also:
- Wikipedia: Mathematical Group
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ginverse()Returns the multiplicative inverse of this object.Gtimes(G that)Returns the product of this object with the one specified.
-