Example #1
0
 internal AdditiveGroup(Ring <I> ring)
 {
     this.ring = ring;
 }
Example #2
0
 /// <summary>
 ///     Create a new Ring Element
 /// </summary>
 /// <param name="identifier">Identifier that allows manipulation of the element</param>
 /// <param name="structure">The ring to which this element belongs to</param>
 public RingElement(I identifier, Ring <I> structure) : base(identifier, structure)
 {
 }
Example #3
0
 public IntElement(BigInteger identifier, Ring <BigInteger> structure) : base(identifier, structure)
 {
 }