/IronPython_1_1/Src/IronPython/Runtime/Operations/FloatOps.Generated.cs

# · C# · 295 lines · 233 code · 44 blank · 18 comment · 104 complexity · 954c8edffc64883b9dc31cc077b5bd0a MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Microsoft Public
  6. * License. A copy of the license can be found in the License.html file at the
  7. * root of this distribution. If you cannot locate the Microsoft Public
  8. * License, please send an email to dlr@microsoft.com. By using this source
  9. * code in any fashion, you are agreeing to be bound by the terms of the
  10. * Microsoft Public License.
  11. *
  12. * You must not remove this notice, or any other, from this software.
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Text;
  18. using IronMath;
  19. using IronPython.Runtime;
  20. namespace IronPython.Runtime.Operations {
  21. public partial class ExtensibleFloat {
  22. #region Generated Extensible FloatOps
  23. // *** BEGIN GENERATED CODE ***
  24. [PythonName("__add__")]
  25. public virtual object Add(object other) {
  26. return FloatOps.Add(value, other);
  27. }
  28. [PythonName("__radd__")]
  29. public virtual object ReverseAdd(object other) {
  30. return FloatOps.ReverseAdd(value, other);
  31. }
  32. [PythonName("__sub__")]
  33. public virtual object Subtract(object other) {
  34. return FloatOps.Subtract(value, other);
  35. }
  36. [PythonName("__rsub__")]
  37. public virtual object ReverseSubtract(object other) {
  38. return FloatOps.ReverseSubtract(value, other);
  39. }
  40. [PythonName("__pow__")]
  41. public virtual object Power(object other) {
  42. return FloatOps.Power(value, other);
  43. }
  44. [PythonName("__rpow__")]
  45. public virtual object ReversePower(object other) {
  46. return FloatOps.ReversePower(value, other);
  47. }
  48. [PythonName("__mul__")]
  49. public virtual object Multiply(object other) {
  50. return FloatOps.Multiply(value, other);
  51. }
  52. [PythonName("__rmul__")]
  53. public virtual object ReverseMultiply(object other) {
  54. return FloatOps.ReverseMultiply(value, other);
  55. }
  56. [PythonName("__div__")]
  57. public virtual object Divide(object other) {
  58. return FloatOps.Divide(value, other);
  59. }
  60. [PythonName("__rdiv__")]
  61. public virtual object ReverseDivide(object other) {
  62. return FloatOps.ReverseDivide(value, other);
  63. }
  64. [PythonName("__floordiv__")]
  65. public virtual object FloorDivide(object other) {
  66. return FloatOps.FloorDivide(value, other);
  67. }
  68. [PythonName("__rfloordiv__")]
  69. public virtual object ReverseFloorDivide(object other) {
  70. return FloatOps.ReverseFloorDivide(value, other);
  71. }
  72. [PythonName("__truediv__")]
  73. public virtual object TrueDivide(object other) {
  74. return FloatOps.TrueDivide(value, other);
  75. }
  76. [PythonName("__rtruediv__")]
  77. public virtual object ReverseTrueDivide(object other) {
  78. return FloatOps.ReverseTrueDivide(value, other);
  79. }
  80. [PythonName("__mod__")]
  81. public virtual object Mod(object other) {
  82. return FloatOps.Mod(value, other);
  83. }
  84. [PythonName("__rmod__")]
  85. public virtual object ReverseMod(object other) {
  86. return FloatOps.ReverseMod(value, other);
  87. }
  88. // *** END GENERATED CODE ***
  89. #endregion
  90. }
  91. public static partial class FloatOps {
  92. #region Generated FloatOps
  93. // *** BEGIN GENERATED CODE ***
  94. [PythonName("__add__")]
  95. public static object Add(double x, object other) {
  96. BigInteger bi;
  97. ExtensibleComplex xc;
  98. INumber num;
  99. if (other is double) return x + ((double)other);
  100. if (other is int) return x + ((int)other);
  101. if (other is Complex64) return ComplexOps.Add(Complex64.MakeReal(x), (Complex64)other);
  102. if ((object)(bi = other as BigInteger) != null) return x + bi;
  103. if (other is float) return x + ((float)other);
  104. if ((object)(num = other as INumber) != null) return num.ReverseAdd(x);
  105. if (other is string) return Ops.NotImplemented;
  106. if (other is IConvertible) {
  107. double y = ((IConvertible)other).ToDouble(null);
  108. return x + y;
  109. }
  110. if (other is long) return x + ((long)other);
  111. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Add(Complex64.MakeReal(x), xc.value);
  112. return Ops.NotImplemented;
  113. }
  114. [PythonName("__radd__")]
  115. public static object ReverseAdd(double x, object other) {
  116. BigInteger bi;
  117. ExtensibleComplex xc;
  118. INumber num;
  119. if (other is double) return ((double)other) + x;
  120. if (other is int) return ((int)other) + x;
  121. if (other is Complex64) return ComplexOps.Add((Complex64)other, Complex64.MakeReal(x));
  122. if ((object)(bi = other as BigInteger) != null) return bi + x;
  123. if (other is float) return ((float)other) + x;
  124. if ((object)(num = other as INumber) != null) return num.Add(x);
  125. if (other is string) return Ops.NotImplemented;
  126. if (other is long) return ((long)other) + x;
  127. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Add(xc.value, Complex64.MakeReal(x));
  128. if (other is IConvertible) {
  129. double y = ((IConvertible)other).ToDouble(null);
  130. return y + x;
  131. }
  132. return Ops.NotImplemented;
  133. }
  134. [PythonName("__sub__")]
  135. public static object Subtract(double x, object other) {
  136. BigInteger bi;
  137. ExtensibleComplex xc;
  138. INumber num;
  139. if (other is double) return x - ((double)other);
  140. if (other is int) return x - ((int)other);
  141. if (other is Complex64) return ComplexOps.Subtract(Complex64.MakeReal(x), (Complex64)other);
  142. if ((object)(bi = other as BigInteger) != null) return x - bi;
  143. if (other is float) return x - ((float)other);
  144. if ((object)(num = other as INumber) != null) return num.ReverseSubtract(x);
  145. if (other is string) return Ops.NotImplemented;
  146. if (other is IConvertible) {
  147. double y = ((IConvertible)other).ToDouble(null);
  148. return x - y;
  149. }
  150. if (other is long) return x - ((long)other);
  151. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Subtract(Complex64.MakeReal(x), xc.value);
  152. return Ops.NotImplemented;
  153. }
  154. [PythonName("__rsub__")]
  155. public static object ReverseSubtract(double x, object other) {
  156. BigInteger bi;
  157. ExtensibleComplex xc;
  158. INumber num;
  159. if (other is double) return ((double)other) - x;
  160. if (other is int) return ((int)other) - x;
  161. if (other is Complex64) return ComplexOps.Subtract((Complex64)other, Complex64.MakeReal(x));
  162. if ((object)(bi = other as BigInteger) != null) return bi - x;
  163. if (other is float) return ((float)other) - x;
  164. if ((object)(num = other as INumber) != null) return num.Subtract(x);
  165. if (other is string) return Ops.NotImplemented;
  166. if (other is long) return ((long)other) - x;
  167. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Subtract(xc.value, Complex64.MakeReal(x));
  168. if (other is IConvertible) {
  169. double y = ((IConvertible)other).ToDouble(null);
  170. return y - x;
  171. }
  172. return Ops.NotImplemented;
  173. }
  174. [PythonName("__mul__")]
  175. public static object Multiply(double x, object other) {
  176. BigInteger bi;
  177. ExtensibleComplex xc;
  178. INumber num;
  179. if (other is double) return x * ((double)other);
  180. if (other is int) return x * ((int)other);
  181. if (other is Complex64) return ComplexOps.Multiply(Complex64.MakeReal(x), (Complex64)other);
  182. if ((object)(bi = other as BigInteger) != null) return x * bi;
  183. if (other is float) return x * ((float)other);
  184. if ((object)(num = other as INumber) != null) return num.ReverseMultiply(x);
  185. if (other is string) return Ops.NotImplemented;
  186. if (other is IConvertible) {
  187. double y = ((IConvertible)other).ToDouble(null);
  188. return x * y;
  189. }
  190. if (other is long) return x * ((long)other);
  191. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Multiply(Complex64.MakeReal(x), xc.value);
  192. return Ops.NotImplemented;
  193. }
  194. [PythonName("__rmul__")]
  195. public static object ReverseMultiply(double x, object other) {
  196. BigInteger bi;
  197. ExtensibleComplex xc;
  198. INumber num;
  199. if (other is double) return ((double)other) * x;
  200. if (other is int) return ((int)other) * x;
  201. if (other is Complex64) return ComplexOps.Multiply((Complex64)other, Complex64.MakeReal(x));
  202. if ((object)(bi = other as BigInteger) != null) return bi * x;
  203. if (other is float) return ((float)other) * x;
  204. if ((object)(num = other as INumber) != null) return num.Multiply(x);
  205. if (other is string) return Ops.NotImplemented;
  206. if (other is long) return ((long)other) * x;
  207. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.Multiply(xc.value, Complex64.MakeReal(x));
  208. if (other is IConvertible) {
  209. double y = ((IConvertible)other).ToDouble(null);
  210. return y * x;
  211. }
  212. return Ops.NotImplemented;
  213. }
  214. [PythonName("__truediv__")]
  215. public static object TrueDivide(double x, object other) {
  216. BigInteger bi;
  217. ExtensibleComplex xc;
  218. INumber num;
  219. if (other is double) return TrueDivide(x, ((double)other));
  220. if (other is int) return TrueDivide(x, ((int)other));
  221. if (other is Complex64) return ComplexOps.TrueDivide(Complex64.MakeReal(x), (Complex64)other);
  222. if ((object)(bi = other as BigInteger) != null) return TrueDivide(x, bi);
  223. if (other is bool) return TrueDivide(x, (bool)other ? 1.0 : 0.0);
  224. if (other is float) return TrueDivide(x, ((float)other));
  225. if ((object)(num = other as INumber) != null) return num.ReverseTrueDivide(x);
  226. if (other is long) return TrueDivide(x, ((long)other));
  227. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.TrueDivide(Complex64.MakeReal(x), xc.value);
  228. if (other is byte) return TrueDivide(x, (int)((byte)other));
  229. return Ops.NotImplemented;
  230. }
  231. [PythonName("__rtruediv__")]
  232. public static object ReverseTrueDivide(double x, object other) {
  233. BigInteger bi;
  234. ExtensibleComplex xc;
  235. INumber num;
  236. if (other is double) return ReverseTrueDivide(x, ((double)other));
  237. if (other is int) return ReverseTrueDivide(x, ((int)other));
  238. if (other is Complex64) return ComplexOps.ReverseTrueDivide(Complex64.MakeReal(x), (Complex64)other);
  239. if ((object)(bi = other as BigInteger) != null) return ReverseTrueDivide(x, bi);
  240. if (other is bool) return ReverseTrueDivide(x, (bool)other ? 1.0 : 0.0);
  241. if (other is float) return ReverseTrueDivide(x, ((float)other));
  242. if ((object)(num = other as INumber) != null) return num.ReverseTrueDivide(x);
  243. if (other is long) return ReverseTrueDivide(x, ((long)other));
  244. if ((object)(xc = other as ExtensibleComplex) != null) return ComplexOps.ReverseTrueDivide(Complex64.MakeReal(x), xc.value);
  245. if (other is byte) return ReverseTrueDivide(x, (int)((byte)other));
  246. return Ops.NotImplemented;
  247. }
  248. // *** END GENERATED CODE ***
  249. #endregion
  250. }
  251. }