Esempio n. 1
0
        public void Zero()
        {
            IntX int1 = new IntX(7) - 7;

            int1.Normalize();
            Assert.IsTrue(int1 == 0);
        }
Esempio n. 2
0
 public void Simple()
 {
     IntX int1 = new IntX(8);
     int1 *= int1;
     int1.Normalize();
     Assert.IsTrue(int1 == 64);
 }
Esempio n. 3
0
        public void Simple()
        {
            IntX int1 = new IntX(8);

            int1 *= int1;
            int1.Normalize();
            Assert.IsTrue(int1 == 64);
        }
Esempio n. 4
0
 public void Zero()
 {
     IntX int1 = new IntX(7) - 7;
     int1.Normalize();
     Assert.IsTrue(int1 == 0);
 }
Esempio n. 5
0
 private BigInt(IntX value)
 {
     _v = value;
     _v.Normalize();
 }
Esempio n. 6
0
 private BigInt(BigInt copyThis)
 {
     _v = new IntX(copyThis._v);
     _v.Normalize();
 }
Esempio n. 7
0
 public BigInt(String number)
 {
     _v = new IntX(number);
     _v.Normalize();
 }
Esempio n. 8
0
 private BigInt(IntX value)
 {
     _v = value;
     _v.Normalize();
 }
Esempio n. 9
0
 private BigInt(BigInt copyThis)
 {
     _v = new IntX( copyThis._v );
     _v.Normalize();
 }
Esempio n. 10
0
 public BigInt(String number)
 {
     _v = new IntX( number );
     _v.Normalize();
 }