예제 #1
0
        public void Zero()
        {
            IntX int1 = new IntX(7) - 7;

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

            int1 *= int1;
            int1.Normalize();
            Assert.IsTrue(int1 == 64);
        }
예제 #4
0
 public void Zero()
 {
     IntX int1 = new IntX(7) - 7;
     int1.Normalize();
     Assert.IsTrue(int1 == 0);
 }
예제 #5
0
 private BigInt(IntX value)
 {
     _v = value;
     _v.Normalize();
 }
예제 #6
0
 private BigInt(BigInt copyThis)
 {
     _v = new IntX(copyThis._v);
     _v.Normalize();
 }
예제 #7
0
 public BigInt(String number)
 {
     _v = new IntX(number);
     _v.Normalize();
 }
예제 #8
0
파일: BigInt.cs 프로젝트: vogon/Demotic
 private BigInt(IntX value)
 {
     _v = value;
     _v.Normalize();
 }
예제 #9
0
파일: BigInt.cs 프로젝트: vogon/Demotic
 private BigInt(BigInt copyThis)
 {
     _v = new IntX( copyThis._v );
     _v.Normalize();
 }
예제 #10
0
파일: BigInt.cs 프로젝트: vogon/Demotic
 public BigInt(String number)
 {
     _v = new IntX( number );
     _v.Normalize();
 }