Exemplo n.º 1
0
 // improve actually
 static object IntegerIfPossible(object res)
 {
     if (res is BigInteger)
     {
         return(ToIntegerIfPossible((BigInteger)res));
     }
     else if (res is Fraction)
     {
         Fraction f = (Fraction)res;
         if (f.Denominator == 1)
         {
             return(ToIntegerIfPossible(f.Numerator));
         }
     }
     else if (res is ComplexFraction)
     {
         ComplexFraction cf = (ComplexFraction)res;
         if (cf.Imag == 0)
         {
             return(IntegerIfPossible(cf.Real));
         }
     }
     return(res);
 }
Exemplo n.º 2
0
 public static ComplexFraction Plus(ComplexFraction x)
 {
     return(+x);
 }
Exemplo n.º 3
0
 public static ComplexFraction Negate(ComplexFraction x)
 {
     return(-x);
 }
Exemplo n.º 4
0
 public static ComplexFraction Mod(ComplexFraction x, ComplexFraction y)
 {
     return(x % y);
 }
Exemplo n.º 5
0
 public static ComplexFraction Divide(ComplexFraction x, ComplexFraction y)
 {
     return(x / y);
 }
Exemplo n.º 6
0
 public static ComplexFraction Multiply(ComplexFraction x, ComplexFraction y)
 {
     return(x * y);
 }
Exemplo n.º 7
0
 public static ComplexFraction Subtract(ComplexFraction x, ComplexFraction y)
 {
     return(x - y);
 }
Exemplo n.º 8
0
 public static ComplexFraction Divide(ComplexFraction x, ComplexFraction y)
 {
     return x / y;
 }
Exemplo n.º 9
0
 public ComplexFractionConstant(ComplexFraction f)
 {
     value = f;
 }
Exemplo n.º 10
0
 public ComplexFraction Power(ComplexFraction y)
 {
     return ((Complex64)this).Power(y);
 }
Exemplo n.º 11
0
 public static ComplexFraction Subtract(ComplexFraction x, ComplexFraction y)
 {
     return x - y;
 }
Exemplo n.º 12
0
 public static ComplexFraction Plus(ComplexFraction x)
 {
     return +x;
 }
Exemplo n.º 13
0
 public static ComplexFraction Negate(ComplexFraction x)
 {
     return -x;
 }
Exemplo n.º 14
0
 public static ComplexFraction Multiply(ComplexFraction x, ComplexFraction y)
 {
     return x * y;
 }
Exemplo n.º 15
0
 public static ComplexFraction Mod(ComplexFraction x, ComplexFraction y)
 {
     return x % y;
 }
Exemplo n.º 16
0
 public ComplexFraction Power(ComplexFraction y)
 {
     return(((Complex64)this).Power(y));
 }
Exemplo n.º 17
0
 public static ComplexFraction Add(ComplexFraction x, ComplexFraction y)
 {
     return(x + y);
 }
Exemplo n.º 18
0
 public static ComplexFraction Add(ComplexFraction x, ComplexFraction y)
 {
     return x + y;
 }