public void Zero() { IntX int1 = new IntX(7) - 7; int1.Normalize(); Assert.IsTrue(int1 == 0); }
public void Simple() { IntX int1 = new IntX(8); int1 *= int1; int1.Normalize(); Assert.IsTrue(int1 == 64); }
private BigInt(IntX value) { _v = value; _v.Normalize(); }
private BigInt(BigInt copyThis) { _v = new IntX(copyThis._v); _v.Normalize(); }
public BigInt(String number) { _v = new IntX(number); _v.Normalize(); }
private BigInt(BigInt copyThis) { _v = new IntX( copyThis._v ); _v.Normalize(); }
public BigInt(String number) { _v = new IntX( number ); _v.Normalize(); }