Пример #1
0
 public override Rational Root(Rational a, Rational b)
 {
     return(IntegerMath.Root((BigInteger)a, (BigInteger)b));
 }
Пример #2
0
 public override uint Root(uint a, uint b)
 {
     return(IntegerMath.Root(a, b));
 }
Пример #3
0
 public override int Root(int a, int b)
 {
     return(IntegerMath.Root(a, b));
 }
 public override Int128 Root(Int128 a, Int128 b)
 {
     return(IntegerMath.Root(a, b));
 }
Пример #5
0
 public override ulong Root(ulong a, ulong b)
 {
     return(IntegerMath.Root(a, b));
 }
 public override BigInteger Root(BigInteger a, BigInteger b)
 {
     return(IntegerMath.Root(a, b));
 }