mathjs 11.5.0 → 11.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. package/HISTORY.md +39 -0
  2. package/NOTICE +1 -1
  3. package/README.md +2 -2
  4. package/bin/cli.js +1 -1
  5. package/lib/browser/math.js +1 -1
  6. package/lib/browser/math.js.LICENSE.txt +3 -3
  7. package/lib/browser/math.js.map +1 -1
  8. package/lib/cjs/entry/dependenciesAny/dependenciesAdd.generated.js +2 -0
  9. package/lib/cjs/entry/dependenciesAny/dependenciesAnd.generated.js +2 -0
  10. package/lib/cjs/entry/dependenciesAny/dependenciesAtan2.generated.js +2 -0
  11. package/lib/cjs/entry/dependenciesAny/dependenciesBitAnd.generated.js +2 -0
  12. package/lib/cjs/entry/dependenciesAny/dependenciesBitOr.generated.js +2 -0
  13. package/lib/cjs/entry/dependenciesAny/dependenciesBitXor.generated.js +2 -0
  14. package/lib/cjs/entry/dependenciesAny/dependenciesCompare.generated.js +2 -0
  15. package/lib/cjs/entry/dependenciesAny/dependenciesCompareText.generated.js +2 -0
  16. package/lib/cjs/entry/dependenciesAny/dependenciesDotDivide.generated.js +2 -0
  17. package/lib/cjs/entry/dependenciesAny/dependenciesDotMultiply.generated.js +2 -0
  18. package/lib/cjs/entry/dependenciesAny/dependenciesDotPow.generated.js +2 -0
  19. package/lib/cjs/entry/dependenciesAny/dependenciesEqual.generated.js +2 -0
  20. package/lib/cjs/entry/dependenciesAny/dependenciesFft.generated.js +10 -0
  21. package/lib/cjs/entry/dependenciesAny/dependenciesGcd.generated.js +2 -0
  22. package/lib/cjs/entry/dependenciesAny/dependenciesLarger.generated.js +2 -0
  23. package/lib/cjs/entry/dependenciesAny/dependenciesLargerEq.generated.js +2 -0
  24. package/lib/cjs/entry/dependenciesAny/dependenciesLcm.generated.js +2 -0
  25. package/lib/cjs/entry/dependenciesAny/dependenciesLeftShift.generated.js +2 -0
  26. package/lib/cjs/entry/dependenciesAny/dependenciesMod.generated.js +2 -0
  27. package/lib/cjs/entry/dependenciesAny/dependenciesNthRoot.generated.js +2 -0
  28. package/lib/cjs/entry/dependenciesAny/dependenciesOr.generated.js +2 -0
  29. package/lib/cjs/entry/dependenciesAny/dependenciesRightArithShift.generated.js +2 -0
  30. package/lib/cjs/entry/dependenciesAny/dependenciesRightLogShift.generated.js +2 -0
  31. package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +0 -2
  32. package/lib/cjs/entry/dependenciesAny/dependenciesSmaller.generated.js +2 -0
  33. package/lib/cjs/entry/dependenciesAny/dependenciesSmallerEq.generated.js +2 -0
  34. package/lib/cjs/entry/dependenciesAny/dependenciesSubtract.generated.js +2 -0
  35. package/lib/cjs/entry/dependenciesAny/dependenciesTo.generated.js +2 -0
  36. package/lib/cjs/entry/dependenciesAny/dependenciesUnequal.generated.js +2 -0
  37. package/lib/cjs/entry/dependenciesAny/dependenciesXor.generated.js +2 -0
  38. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +0 -2
  39. package/lib/cjs/entry/impureFunctionsAny.generated.js +102 -103
  40. package/lib/cjs/entry/impureFunctionsNumber.generated.js +41 -42
  41. package/lib/cjs/entry/pureFunctionsAny.generated.js +405 -372
  42. package/lib/cjs/expression/embeddedDocs/function/arithmetic/invmod.js +1 -1
  43. package/lib/cjs/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  44. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromColumns.js +1 -1
  45. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromFunction.js +1 -1
  46. package/lib/cjs/expression/embeddedDocs/function/matrix/matrixFromRows.js +1 -1
  47. package/lib/cjs/expression/embeddedDocs/function/matrix/rotate.js +1 -1
  48. package/lib/cjs/expression/embeddedDocs/function/matrix/sort.js +1 -1
  49. package/lib/cjs/expression/embeddedDocs/function/probability/lgamma.js +1 -1
  50. package/lib/cjs/expression/embeddedDocs/function/statistics/max.js +1 -1
  51. package/lib/cjs/expression/embeddedDocs/function/statistics/mean.js +1 -1
  52. package/lib/cjs/expression/embeddedDocs/function/statistics/min.js +1 -1
  53. package/lib/cjs/expression/embeddedDocs/function/statistics/std.js +1 -1
  54. package/lib/cjs/expression/embeddedDocs/function/statistics/sum.js +1 -1
  55. package/lib/cjs/expression/embeddedDocs/function/statistics/variance.js +1 -1
  56. package/lib/cjs/function/algebra/simplifyConstant.js +1 -2
  57. package/lib/cjs/function/arithmetic/add.js +38 -37
  58. package/lib/cjs/function/arithmetic/dotDivide.js +5 -3
  59. package/lib/cjs/function/arithmetic/dotMultiply.js +5 -3
  60. package/lib/cjs/function/arithmetic/dotPow.js +5 -3
  61. package/lib/cjs/function/arithmetic/gcd.js +5 -3
  62. package/lib/cjs/function/arithmetic/lcm.js +5 -3
  63. package/lib/cjs/function/arithmetic/mod.js +5 -3
  64. package/lib/cjs/function/arithmetic/nthRoot.js +5 -3
  65. package/lib/cjs/function/arithmetic/subtract.js +5 -3
  66. package/lib/cjs/function/bitwise/bitAnd.js +5 -3
  67. package/lib/cjs/function/bitwise/bitOr.js +5 -3
  68. package/lib/cjs/function/bitwise/bitXor.js +5 -3
  69. package/lib/cjs/function/bitwise/leftShift.js +5 -3
  70. package/lib/cjs/function/bitwise/rightArithShift.js +5 -3
  71. package/lib/cjs/function/bitwise/rightLogShift.js +5 -3
  72. package/lib/cjs/function/geometry/distance.js +3 -3
  73. package/lib/cjs/function/logical/and.js +5 -3
  74. package/lib/cjs/function/logical/or.js +5 -3
  75. package/lib/cjs/function/logical/xor.js +5 -3
  76. package/lib/cjs/function/matrix/column.js +3 -1
  77. package/lib/cjs/function/matrix/fft.js +43 -4
  78. package/lib/cjs/function/matrix/getMatrixDataType.js +1 -1
  79. package/lib/cjs/function/matrix/row.js +3 -1
  80. package/lib/cjs/function/matrix/subset.js +1 -1
  81. package/lib/cjs/function/relational/compare.js +5 -3
  82. package/lib/cjs/function/relational/compareText.js +5 -3
  83. package/lib/cjs/function/relational/equal.js +5 -3
  84. package/lib/cjs/function/relational/larger.js +5 -3
  85. package/lib/cjs/function/relational/largerEq.js +5 -3
  86. package/lib/cjs/function/relational/smaller.js +5 -3
  87. package/lib/cjs/function/relational/smallerEq.js +5 -3
  88. package/lib/cjs/function/relational/unequal.js +5 -3
  89. package/lib/cjs/function/statistics/max.js +3 -3
  90. package/lib/cjs/function/statistics/mean.js +2 -2
  91. package/lib/cjs/function/statistics/min.js +2 -2
  92. package/lib/cjs/function/statistics/mode.js +1 -1
  93. package/lib/cjs/function/statistics/prod.js +1 -1
  94. package/lib/cjs/function/statistics/quantileSeq.js +5 -4
  95. package/lib/cjs/function/statistics/sum.js +3 -2
  96. package/lib/cjs/function/statistics/variance.js +1 -1
  97. package/lib/cjs/function/trigonometry/atan2.js +5 -3
  98. package/lib/cjs/function/unit/to.js +8 -6
  99. package/lib/cjs/header.js +3 -3
  100. package/lib/cjs/type/matrix/utils/broadcast.js +84 -0
  101. package/lib/cjs/type/matrix/utils/matrixAlgorithmSuite.js +27 -20
  102. package/lib/cjs/version.js +1 -1
  103. package/lib/esm/entry/dependenciesAny/dependenciesAdd.generated.js +2 -0
  104. package/lib/esm/entry/dependenciesAny/dependenciesAnd.generated.js +2 -0
  105. package/lib/esm/entry/dependenciesAny/dependenciesAtan2.generated.js +2 -0
  106. package/lib/esm/entry/dependenciesAny/dependenciesBitAnd.generated.js +2 -0
  107. package/lib/esm/entry/dependenciesAny/dependenciesBitOr.generated.js +2 -0
  108. package/lib/esm/entry/dependenciesAny/dependenciesBitXor.generated.js +2 -0
  109. package/lib/esm/entry/dependenciesAny/dependenciesCompare.generated.js +2 -0
  110. package/lib/esm/entry/dependenciesAny/dependenciesCompareText.generated.js +2 -0
  111. package/lib/esm/entry/dependenciesAny/dependenciesDotDivide.generated.js +2 -0
  112. package/lib/esm/entry/dependenciesAny/dependenciesDotMultiply.generated.js +2 -0
  113. package/lib/esm/entry/dependenciesAny/dependenciesDotPow.generated.js +2 -0
  114. package/lib/esm/entry/dependenciesAny/dependenciesEqual.generated.js +2 -0
  115. package/lib/esm/entry/dependenciesAny/dependenciesFft.generated.js +10 -0
  116. package/lib/esm/entry/dependenciesAny/dependenciesGcd.generated.js +2 -0
  117. package/lib/esm/entry/dependenciesAny/dependenciesLarger.generated.js +2 -0
  118. package/lib/esm/entry/dependenciesAny/dependenciesLargerEq.generated.js +2 -0
  119. package/lib/esm/entry/dependenciesAny/dependenciesLcm.generated.js +2 -0
  120. package/lib/esm/entry/dependenciesAny/dependenciesLeftShift.generated.js +2 -0
  121. package/lib/esm/entry/dependenciesAny/dependenciesMod.generated.js +2 -0
  122. package/lib/esm/entry/dependenciesAny/dependenciesNthRoot.generated.js +2 -0
  123. package/lib/esm/entry/dependenciesAny/dependenciesOr.generated.js +2 -0
  124. package/lib/esm/entry/dependenciesAny/dependenciesRightArithShift.generated.js +2 -0
  125. package/lib/esm/entry/dependenciesAny/dependenciesRightLogShift.generated.js +2 -0
  126. package/lib/esm/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +0 -2
  127. package/lib/esm/entry/dependenciesAny/dependenciesSmaller.generated.js +2 -0
  128. package/lib/esm/entry/dependenciesAny/dependenciesSmallerEq.generated.js +2 -0
  129. package/lib/esm/entry/dependenciesAny/dependenciesSubtract.generated.js +2 -0
  130. package/lib/esm/entry/dependenciesAny/dependenciesTo.generated.js +2 -0
  131. package/lib/esm/entry/dependenciesAny/dependenciesUnequal.generated.js +2 -0
  132. package/lib/esm/entry/dependenciesAny/dependenciesXor.generated.js +2 -0
  133. package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +0 -2
  134. package/lib/esm/entry/impureFunctionsAny.generated.js +100 -101
  135. package/lib/esm/entry/impureFunctionsNumber.generated.js +38 -39
  136. package/lib/esm/entry/pureFunctionsAny.generated.js +332 -299
  137. package/lib/esm/expression/embeddedDocs/function/arithmetic/invmod.js +1 -1
  138. package/lib/esm/expression/embeddedDocs/function/arithmetic/pow.js +1 -1
  139. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromColumns.js +1 -1
  140. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromFunction.js +1 -1
  141. package/lib/esm/expression/embeddedDocs/function/matrix/matrixFromRows.js +1 -1
  142. package/lib/esm/expression/embeddedDocs/function/matrix/rotate.js +1 -1
  143. package/lib/esm/expression/embeddedDocs/function/matrix/sort.js +1 -1
  144. package/lib/esm/expression/embeddedDocs/function/probability/lgamma.js +1 -1
  145. package/lib/esm/expression/embeddedDocs/function/statistics/max.js +1 -1
  146. package/lib/esm/expression/embeddedDocs/function/statistics/mean.js +1 -1
  147. package/lib/esm/expression/embeddedDocs/function/statistics/min.js +1 -1
  148. package/lib/esm/expression/embeddedDocs/function/statistics/std.js +1 -1
  149. package/lib/esm/expression/embeddedDocs/function/statistics/sum.js +1 -1
  150. package/lib/esm/expression/embeddedDocs/function/statistics/variance.js +1 -1
  151. package/lib/esm/function/algebra/simplifyConstant.js +1 -2
  152. package/lib/esm/function/arithmetic/add.js +38 -37
  153. package/lib/esm/function/arithmetic/dotDivide.js +5 -3
  154. package/lib/esm/function/arithmetic/dotMultiply.js +5 -3
  155. package/lib/esm/function/arithmetic/dotPow.js +5 -3
  156. package/lib/esm/function/arithmetic/gcd.js +5 -3
  157. package/lib/esm/function/arithmetic/lcm.js +5 -3
  158. package/lib/esm/function/arithmetic/mod.js +5 -3
  159. package/lib/esm/function/arithmetic/nthRoot.js +5 -3
  160. package/lib/esm/function/arithmetic/subtract.js +5 -3
  161. package/lib/esm/function/bitwise/bitAnd.js +5 -3
  162. package/lib/esm/function/bitwise/bitOr.js +5 -3
  163. package/lib/esm/function/bitwise/bitXor.js +5 -3
  164. package/lib/esm/function/bitwise/leftShift.js +5 -3
  165. package/lib/esm/function/bitwise/rightArithShift.js +5 -3
  166. package/lib/esm/function/bitwise/rightLogShift.js +5 -3
  167. package/lib/esm/function/geometry/distance.js +3 -3
  168. package/lib/esm/function/logical/and.js +5 -3
  169. package/lib/esm/function/logical/or.js +5 -3
  170. package/lib/esm/function/logical/xor.js +5 -3
  171. package/lib/esm/function/matrix/column.js +3 -1
  172. package/lib/esm/function/matrix/fft.js +37 -4
  173. package/lib/esm/function/matrix/getMatrixDataType.js +1 -1
  174. package/lib/esm/function/matrix/row.js +3 -1
  175. package/lib/esm/function/matrix/subset.js +1 -1
  176. package/lib/esm/function/relational/compare.js +5 -3
  177. package/lib/esm/function/relational/compareText.js +5 -3
  178. package/lib/esm/function/relational/equal.js +5 -3
  179. package/lib/esm/function/relational/larger.js +5 -3
  180. package/lib/esm/function/relational/largerEq.js +5 -3
  181. package/lib/esm/function/relational/smaller.js +5 -3
  182. package/lib/esm/function/relational/smallerEq.js +5 -3
  183. package/lib/esm/function/relational/unequal.js +5 -3
  184. package/lib/esm/function/statistics/max.js +3 -3
  185. package/lib/esm/function/statistics/mean.js +2 -2
  186. package/lib/esm/function/statistics/min.js +2 -2
  187. package/lib/esm/function/statistics/mode.js +1 -1
  188. package/lib/esm/function/statistics/prod.js +1 -1
  189. package/lib/esm/function/statistics/quantileSeq.js +5 -4
  190. package/lib/esm/function/statistics/sum.js +3 -2
  191. package/lib/esm/function/statistics/variance.js +1 -1
  192. package/lib/esm/function/trigonometry/atan2.js +5 -3
  193. package/lib/esm/function/unit/to.js +8 -6
  194. package/lib/esm/header.js +1 -1
  195. package/lib/esm/type/matrix/utils/broadcast.js +75 -0
  196. package/lib/esm/type/matrix/utils/matrixAlgorithmSuite.js +25 -20
  197. package/lib/esm/version.js +1 -1
  198. package/package.json +21 -23
  199. package/types/index.d.ts +70 -13
@@ -91,17 +91,17 @@ var AccessorNode = (0, _factoriesAny.createAccessorNode)({
91
91
  subset: _pureFunctionsAnyGenerated.subset
92
92
  });
93
93
  exports.AccessorNode = AccessorNode;
94
+ var IndexNode = (0, _factoriesAny.createIndexNode)({
95
+ Node: Node,
96
+ size: _pureFunctionsAnyGenerated.size
97
+ });
98
+ exports.IndexNode = IndexNode;
94
99
  var AssignmentNode = (0, _factoriesAny.createAssignmentNode)({
95
100
  matrix: _pureFunctionsAnyGenerated.matrix,
96
101
  Node: Node,
97
102
  subset: _pureFunctionsAnyGenerated.subset
98
103
  });
99
104
  exports.AssignmentNode = AssignmentNode;
100
- var IndexNode = (0, _factoriesAny.createIndexNode)({
101
- Node: Node,
102
- size: _pureFunctionsAnyGenerated.size
103
- });
104
- exports.IndexNode = IndexNode;
105
105
  var SymbolNode = (0, _factoriesAny.createSymbolNode)({
106
106
  Unit: _pureFunctionsAnyGenerated.Unit,
107
107
  Node: Node,
@@ -158,7 +158,6 @@ var simplifyConstant = (0, _factoriesAny.createSimplifyConstant)({
158
158
  config: _configReadonly.config,
159
159
  mathWithTransform: mathWithTransform,
160
160
  matrix: _pureFunctionsAnyGenerated.matrix,
161
- parse: parse,
162
161
  typed: _pureFunctionsAnyGenerated.typed
163
162
  });
164
163
  exports.simplifyConstant = simplifyConstant;
@@ -167,15 +166,19 @@ var compile = (0, _factoriesAny.createCompile)({
167
166
  typed: _pureFunctionsAnyGenerated.typed
168
167
  });
169
168
  exports.compile = compile;
169
+ var evaluate = (0, _factoriesAny.createEvaluate)({
170
+ parse: parse,
171
+ typed: _pureFunctionsAnyGenerated.typed
172
+ });
173
+ exports.evaluate = evaluate;
170
174
  var Help = (0, _factoriesAny.createHelpClass)({
171
175
  parse: parse
172
176
  });
173
177
  exports.Help = Help;
174
- var leafCount = (0, _factoriesAny.createLeafCount)({
175
- parse: parse,
176
- typed: _pureFunctionsAnyGenerated.typed
178
+ var Parser = (0, _factoriesAny.createParserClass)({
179
+ evaluate: evaluate
177
180
  });
178
- exports.leafCount = leafCount;
181
+ exports.Parser = Parser;
179
182
  var simplifyCore = (0, _factoriesAny.createSimplifyCore)({
180
183
  AccessorNode: AccessorNode,
181
184
  ArrayNode: ArrayNode,
@@ -197,21 +200,12 @@ var simplifyCore = (0, _factoriesAny.createSimplifyCore)({
197
200
  typed: _pureFunctionsAnyGenerated.typed
198
201
  });
199
202
  exports.simplifyCore = simplifyCore;
200
- var evaluate = (0, _factoriesAny.createEvaluate)({
201
- parse: parse,
202
- typed: _pureFunctionsAnyGenerated.typed
203
- });
204
- exports.evaluate = evaluate;
205
203
  var help = (0, _factoriesAny.createHelp)({
206
204
  Help: Help,
207
205
  mathWithTransform: mathWithTransform,
208
206
  typed: _pureFunctionsAnyGenerated.typed
209
207
  });
210
208
  exports.help = help;
211
- var Parser = (0, _factoriesAny.createParserClass)({
212
- evaluate: evaluate
213
- });
214
- exports.Parser = Parser;
215
209
  var simplify = (0, _factoriesAny.createSimplify)({
216
210
  bignumber: _pureFunctionsAnyGenerated.bignumber,
217
211
  fraction: _pureFunctionsAnyGenerated.fraction,
@@ -268,6 +262,11 @@ var parser = (0, _factoriesAny.createParser)({
268
262
  typed: _pureFunctionsAnyGenerated.typed
269
263
  });
270
264
  exports.parser = parser;
265
+ var leafCount = (0, _factoriesAny.createLeafCount)({
266
+ parse: parse,
267
+ typed: _pureFunctionsAnyGenerated.typed
268
+ });
269
+ exports.leafCount = leafCount;
271
270
  var rationalize = (0, _factoriesAny.createRationalize)({
272
271
  bignumber: _pureFunctionsAnyGenerated.bignumber,
273
272
  fraction: _pureFunctionsAnyGenerated.fraction,
@@ -404,27 +403,18 @@ exports.rationalize = rationalize;
404
403
  isNumeric: _pureFunctionsAnyGenerated.isNumeric,
405
404
  matrix: _pureFunctionsAnyGenerated.matrix,
406
405
  matrixFromFunction: _pureFunctionsAnyGenerated.matrixFromFunction,
407
- mod: _pureFunctionsAnyGenerated.mod,
408
- nthRoot: _pureFunctionsAnyGenerated.nthRoot,
406
+ mode: _pureFunctionsAnyGenerated.mode,
409
407
  numeric: _pureFunctionsAnyGenerated.numeric,
410
- or: _pureFunctionsAnyGenerated.or,
411
408
  prod: _pureFunctionsAnyGenerated.prod,
412
409
  reshape: _pureFunctionsAnyGenerated.reshape,
413
410
  size: _pureFunctionsAnyGenerated.size,
414
- smaller: _pureFunctionsAnyGenerated.smaller,
415
411
  squeeze: _pureFunctionsAnyGenerated.squeeze,
416
412
  subset: _pureFunctionsAnyGenerated.subset,
417
- subtract: _pureFunctionsAnyGenerated.subtract,
418
- to: _pureFunctionsAnyGenerated.to,
419
413
  transpose: _pureFunctionsAnyGenerated.transpose,
420
414
  xgcd: _pureFunctionsAnyGenerated.xgcd,
421
415
  zeros: _pureFunctionsAnyGenerated.zeros,
422
- and: _pureFunctionsAnyGenerated.and,
423
- bitAnd: _pureFunctionsAnyGenerated.bitAnd,
424
- bitXor: _pureFunctionsAnyGenerated.bitXor,
416
+ asin: _pureFunctionsAnyGenerated.asin,
425
417
  cbrt: _pureFunctionsAnyGenerated.cbrt,
426
- compare: _pureFunctionsAnyGenerated.compare,
427
- compareText: _pureFunctionsAnyGenerated.compareText,
428
418
  concat: _pureFunctionsAnyGenerated.concat,
429
419
  count: _pureFunctionsAnyGenerated.count,
430
420
  ctranspose: _pureFunctionsAnyGenerated.ctranspose,
@@ -432,81 +422,91 @@ exports.rationalize = rationalize;
432
422
  divideScalar: _pureFunctionsAnyGenerated.divideScalar,
433
423
  dotDivide: _pureFunctionsAnyGenerated.dotDivide,
434
424
  equal: _pureFunctionsAnyGenerated.equal,
435
- fft: _pureFunctionsAnyGenerated.fft,
436
425
  flatten: _pureFunctionsAnyGenerated.flatten,
437
426
  gcd: _pureFunctionsAnyGenerated.gcd,
438
427
  hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
439
- hypot: _pureFunctionsAnyGenerated.hypot,
440
- ifft: _pureFunctionsAnyGenerated.ifft,
428
+ identity: _pureFunctionsAnyGenerated.identity,
441
429
  kron: _pureFunctionsAnyGenerated.kron,
442
430
  largerEq: _pureFunctionsAnyGenerated.largerEq,
443
431
  leftShift: _pureFunctionsAnyGenerated.leftShift,
444
- lsolve: _pureFunctionsAnyGenerated.lsolve,
445
432
  matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
446
- min: _pureFunctionsAnyGenerated.min,
447
- mode: _pureFunctionsAnyGenerated.mode,
448
- nthRoots: _pureFunctionsAnyGenerated.nthRoots,
433
+ mod: _pureFunctionsAnyGenerated.mod,
434
+ nthRoot: _pureFunctionsAnyGenerated.nthRoot,
449
435
  ones: _pureFunctionsAnyGenerated.ones,
450
- partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
451
436
  resize: _pureFunctionsAnyGenerated.resize,
452
437
  rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
453
438
  round: _pureFunctionsAnyGenerated.round,
454
- smallerEq: _pureFunctionsAnyGenerated.smallerEq,
439
+ smaller: _pureFunctionsAnyGenerated.smaller,
440
+ to: _pureFunctionsAnyGenerated.to,
455
441
  unequal: _pureFunctionsAnyGenerated.unequal,
456
- usolve: _pureFunctionsAnyGenerated.usolve,
457
442
  xor: _pureFunctionsAnyGenerated.xor,
458
443
  add: _pureFunctionsAnyGenerated.add,
459
- atan2: _pureFunctionsAnyGenerated.atan2,
460
- bitOr: _pureFunctionsAnyGenerated.bitOr,
444
+ bitAnd: _pureFunctionsAnyGenerated.bitAnd,
445
+ bitXor: _pureFunctionsAnyGenerated.bitXor,
461
446
  catalan: _pureFunctionsAnyGenerated.catalan,
462
- compareNatural: _pureFunctionsAnyGenerated.compareNatural,
447
+ compare: _pureFunctionsAnyGenerated.compare,
448
+ compareText: _pureFunctionsAnyGenerated.compareText,
463
449
  cumsum: _pureFunctionsAnyGenerated.cumsum,
464
450
  deepEqual: _pureFunctionsAnyGenerated.deepEqual,
465
- diff: _pureFunctionsAnyGenerated.diff,
466
451
  dot: _pureFunctionsAnyGenerated.dot,
467
452
  equalText: _pureFunctionsAnyGenerated.equalText,
468
453
  floor: _pureFunctionsAnyGenerated.floor,
469
- identity: _pureFunctionsAnyGenerated.identity,
454
+ hypot: _pureFunctionsAnyGenerated.hypot,
470
455
  invmod: _pureFunctionsAnyGenerated.invmod,
471
456
  larger: _pureFunctionsAnyGenerated.larger,
472
457
  log: _pureFunctionsAnyGenerated.log,
473
- lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
474
458
  matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
459
+ min: _pureFunctionsAnyGenerated.min,
475
460
  multiply: _pureFunctionsAnyGenerated.multiply,
476
- qr: _pureFunctionsAnyGenerated.qr,
477
- range: _pureFunctionsAnyGenerated.range,
461
+ nthRoots: _pureFunctionsAnyGenerated.nthRoots,
462
+ or: _pureFunctionsAnyGenerated.or,
463
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
464
+ quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
478
465
  rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
479
- setSize: _pureFunctionsAnyGenerated.setSize,
480
- slu: _pureFunctionsAnyGenerated.slu,
481
- sum: _pureFunctionsAnyGenerated.sum,
466
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
467
+ subtract: _pureFunctionsAnyGenerated.subtract,
482
468
  trace: _pureFunctionsAnyGenerated.trace,
483
- usolveAll: _pureFunctionsAnyGenerated.usolveAll,
484
- asin: _pureFunctionsAnyGenerated.asin,
469
+ usolve: _pureFunctionsAnyGenerated.usolve,
470
+ and: _pureFunctionsAnyGenerated.and,
471
+ bitOr: _pureFunctionsAnyGenerated.bitOr,
485
472
  ceil: _pureFunctionsAnyGenerated.ceil,
473
+ compareNatural: _pureFunctionsAnyGenerated.compareNatural,
486
474
  composition: _pureFunctionsAnyGenerated.composition,
487
475
  cross: _pureFunctionsAnyGenerated.cross,
488
476
  det: _pureFunctionsAnyGenerated.det,
477
+ diff: _pureFunctionsAnyGenerated.diff,
489
478
  distance: _pureFunctionsAnyGenerated.distance,
490
479
  dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
491
480
  fix: _pureFunctionsAnyGenerated.fix,
481
+ index: _pureFunctionsAnyGenerated.index,
492
482
  intersect: _pureFunctionsAnyGenerated.intersect,
493
483
  lcm: _pureFunctionsAnyGenerated.lcm,
494
484
  log1p: _pureFunctionsAnyGenerated.log1p,
485
+ lsolve: _pureFunctionsAnyGenerated.lsolve,
495
486
  max: _pureFunctionsAnyGenerated.max,
496
- quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
487
+ qr: _pureFunctionsAnyGenerated.qr,
488
+ range: _pureFunctionsAnyGenerated.range,
497
489
  row: _pureFunctionsAnyGenerated.row,
498
490
  setCartesian: _pureFunctionsAnyGenerated.setCartesian,
499
491
  setDistinct: _pureFunctionsAnyGenerated.setDistinct,
500
492
  setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
501
493
  setPowerset: _pureFunctionsAnyGenerated.setPowerset,
502
- sort: _pureFunctionsAnyGenerated.sort,
494
+ slu: _pureFunctionsAnyGenerated.slu,
495
+ sum: _pureFunctionsAnyGenerated.sum,
496
+ usolveAll: _pureFunctionsAnyGenerated.usolveAll,
497
+ atan2: _pureFunctionsAnyGenerated.atan2,
503
498
  column: _pureFunctionsAnyGenerated.column,
504
- index: _pureFunctionsAnyGenerated.index,
499
+ lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
500
+ setDifference: _pureFunctionsAnyGenerated.setDifference,
501
+ setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
502
+ setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
503
+ sort: _pureFunctionsAnyGenerated.sort,
505
504
  inv: _pureFunctionsAnyGenerated.inv,
505
+ lup: _pureFunctionsAnyGenerated.lup,
506
506
  pinv: _pureFunctionsAnyGenerated.pinv,
507
507
  pow: _pureFunctionsAnyGenerated.pow,
508
- setDifference: _pureFunctionsAnyGenerated.setDifference,
509
- setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
508
+ setIntersect: _pureFunctionsAnyGenerated.setIntersect,
509
+ setUnion: _pureFunctionsAnyGenerated.setUnion,
510
510
  sqrtm: _pureFunctionsAnyGenerated.sqrtm,
511
511
  vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
512
512
  wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
@@ -521,10 +521,11 @@ exports.rationalize = rationalize;
521
521
  elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
522
522
  expm: _pureFunctionsAnyGenerated.expm,
523
523
  faraday: _pureFunctionsAnyGenerated.faraday,
524
- firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
524
+ fft: _pureFunctionsAnyGenerated.fft,
525
525
  gamma: _pureFunctionsAnyGenerated.gamma,
526
526
  gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
527
527
  hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
528
+ ifft: _pureFunctionsAnyGenerated.ifft,
528
529
  klitzing: _pureFunctionsAnyGenerated.klitzing,
529
530
  loschmidt: _pureFunctionsAnyGenerated.loschmidt,
530
531
  magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
@@ -539,7 +540,6 @@ exports.rationalize = rationalize;
539
540
  reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
540
541
  rydberg: _pureFunctionsAnyGenerated.rydberg,
541
542
  secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
542
- setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
543
543
  speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
544
544
  stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
545
545
  thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
@@ -549,52 +549,51 @@ exports.rationalize = rationalize;
549
549
  divide: _pureFunctionsAnyGenerated.divide,
550
550
  electronMass: _pureFunctionsAnyGenerated.electronMass,
551
551
  factorial: _pureFunctionsAnyGenerated.factorial,
552
- gravity: _pureFunctionsAnyGenerated.gravity,
552
+ firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
553
+ gasConstant: _pureFunctionsAnyGenerated.gasConstant,
553
554
  inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
554
- lup: _pureFunctionsAnyGenerated.lup,
555
+ lusolve: _pureFunctionsAnyGenerated.lusolve,
555
556
  magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
556
557
  molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
557
558
  multinomial: _pureFunctionsAnyGenerated.multinomial,
558
- parse: parse,
559
559
  permutations: _pureFunctionsAnyGenerated.permutations,
560
560
  planckMass: _pureFunctionsAnyGenerated.planckMass,
561
561
  polynomialRoot: _pureFunctionsAnyGenerated.polynomialRoot,
562
- resolve: resolve,
563
- setIntersect: _pureFunctionsAnyGenerated.setIntersect,
564
- simplifyConstant: simplifyConstant,
562
+ setSize: _pureFunctionsAnyGenerated.setSize,
565
563
  stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
566
564
  unit: _pureFunctionsAnyGenerated.unit,
567
565
  bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
568
- compile: compile,
569
566
  eigs: _pureFunctionsAnyGenerated.eigs,
570
567
  fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
571
- leafCount: leafCount,
568
+ gravity: _pureFunctionsAnyGenerated.gravity,
569
+ kldivergence: _pureFunctionsAnyGenerated.kldivergence,
572
570
  mean: _pureFunctionsAnyGenerated.mean,
573
571
  molarVolume: _pureFunctionsAnyGenerated.molarVolume,
574
572
  planckConstant: _pureFunctionsAnyGenerated.planckConstant,
575
573
  quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
576
- setUnion: _pureFunctionsAnyGenerated.setUnion,
577
- simplifyCore: simplifyCore,
578
574
  variance: _pureFunctionsAnyGenerated.variance,
579
575
  classicalElectronRadius: _pureFunctionsAnyGenerated.classicalElectronRadius,
576
+ median: _pureFunctionsAnyGenerated.median,
577
+ parse: parse,
578
+ planckTime: _pureFunctionsAnyGenerated.planckTime,
579
+ resolve: resolve,
580
+ simplifyConstant: simplifyConstant,
581
+ std: _pureFunctionsAnyGenerated.std,
582
+ compile: compile,
580
583
  evaluate: evaluate,
584
+ mad: _pureFunctionsAnyGenerated.mad,
585
+ simplifyCore: simplifyCore,
581
586
  help: help,
582
- lusolve: _pureFunctionsAnyGenerated.lusolve,
583
- median: _pureFunctionsAnyGenerated.median,
587
+ norm: _pureFunctionsAnyGenerated.norm,
588
+ rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
584
589
  simplify: simplify,
585
590
  symbolicEqual: symbolicEqual,
586
591
  derivative: derivative,
587
- kldivergence: _pureFunctionsAnyGenerated.kldivergence,
588
- mad: _pureFunctionsAnyGenerated.mad,
589
592
  parser: parser,
593
+ rotate: _pureFunctionsAnyGenerated.rotate,
594
+ leafCount: leafCount,
590
595
  rationalize: rationalize,
591
- std: _pureFunctionsAnyGenerated.std,
592
- gasConstant: _pureFunctionsAnyGenerated.gasConstant,
593
- norm: _pureFunctionsAnyGenerated.norm,
594
- rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
595
- planckTime: _pureFunctionsAnyGenerated.planckTime,
596
596
  schur: _pureFunctionsAnyGenerated.schur,
597
- rotate: _pureFunctionsAnyGenerated.rotate,
598
597
  sylvester: _pureFunctionsAnyGenerated.sylvester,
599
598
  lyap: _pureFunctionsAnyGenerated.lyap,
600
599
  config: _configReadonly.config
@@ -613,13 +612,6 @@ exports.rationalize = rationalize;
613
612
  isInteger: _pureFunctionsAnyGenerated.isInteger,
614
613
  typed: _pureFunctionsAnyGenerated.typed
615
614
  }),
616
- diff: (0, _factoriesAny.createDiffTransform)({
617
- bignumber: _pureFunctionsAnyGenerated.bignumber,
618
- matrix: _pureFunctionsAnyGenerated.matrix,
619
- number: _pureFunctionsAnyGenerated.number,
620
- subtract: _pureFunctionsAnyGenerated.subtract,
621
- typed: _pureFunctionsAnyGenerated.typed
622
- }),
623
615
  subset: (0, _factoriesAny.createSubsetTransform)({
624
616
  matrix: _pureFunctionsAnyGenerated.matrix,
625
617
  typed: _pureFunctionsAnyGenerated.typed
@@ -635,12 +627,33 @@ exports.rationalize = rationalize;
635
627
  numeric: _pureFunctionsAnyGenerated.numeric,
636
628
  typed: _pureFunctionsAnyGenerated.typed
637
629
  }),
630
+ sum: (0, _factoriesAny.createSumTransform)({
631
+ add: _pureFunctionsAnyGenerated.add,
632
+ config: _configReadonly.config,
633
+ numeric: _pureFunctionsAnyGenerated.numeric,
634
+ typed: _pureFunctionsAnyGenerated.typed
635
+ }),
638
636
  min: (0, _factoriesAny.createMinTransform)({
639
637
  config: _configReadonly.config,
640
638
  numeric: _pureFunctionsAnyGenerated.numeric,
641
639
  smaller: _pureFunctionsAnyGenerated.smaller,
642
640
  typed: _pureFunctionsAnyGenerated.typed
643
641
  }),
642
+ cumsum: (0, _factoriesAny.createCumSumTransform)({
643
+ add: _pureFunctionsAnyGenerated.add,
644
+ typed: _pureFunctionsAnyGenerated.typed,
645
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
646
+ }),
647
+ diff: (0, _factoriesAny.createDiffTransform)({
648
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
649
+ matrix: _pureFunctionsAnyGenerated.matrix,
650
+ number: _pureFunctionsAnyGenerated.number,
651
+ subtract: _pureFunctionsAnyGenerated.subtract,
652
+ typed: _pureFunctionsAnyGenerated.typed
653
+ }),
654
+ index: (0, _factoriesAny.createIndexTransform)({
655
+ Index: _pureFunctionsAnyGenerated.Index
656
+ }),
644
657
  range: (0, _factoriesAny.createRangeTransform)({
645
658
  bignumber: _pureFunctionsAnyGenerated.bignumber,
646
659
  matrix: _pureFunctionsAnyGenerated.matrix,
@@ -651,17 +664,6 @@ exports.rationalize = rationalize;
651
664
  smallerEq: _pureFunctionsAnyGenerated.smallerEq,
652
665
  typed: _pureFunctionsAnyGenerated.typed
653
666
  }),
654
- sum: (0, _factoriesAny.createSumTransform)({
655
- add: _pureFunctionsAnyGenerated.add,
656
- config: _configReadonly.config,
657
- numeric: _pureFunctionsAnyGenerated.numeric,
658
- typed: _pureFunctionsAnyGenerated.typed
659
- }),
660
- cumsum: (0, _factoriesAny.createCumSumTransform)({
661
- add: _pureFunctionsAnyGenerated.add,
662
- typed: _pureFunctionsAnyGenerated.typed,
663
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
664
- }),
665
667
  row: (0, _factoriesAny.createRowTransform)({
666
668
  Index: _pureFunctionsAnyGenerated.Index,
667
669
  matrix: _pureFunctionsAnyGenerated.matrix,
@@ -674,9 +676,6 @@ exports.rationalize = rationalize;
674
676
  range: _pureFunctionsAnyGenerated.range,
675
677
  typed: _pureFunctionsAnyGenerated.typed
676
678
  }),
677
- index: (0, _factoriesAny.createIndexTransform)({
678
- Index: _pureFunctionsAnyGenerated.Index
679
- }),
680
679
  mean: (0, _factoriesAny.createMeanTransform)({
681
680
  add: _pureFunctionsAnyGenerated.add,
682
681
  divide: _pureFunctionsAnyGenerated.divide,
@@ -720,11 +719,11 @@ exports.rationalize = rationalize;
720
719
  FunctionAssignmentNode: FunctionAssignmentNode,
721
720
  SparseMatrix: _pureFunctionsAnyGenerated.SparseMatrix,
722
721
  AccessorNode: AccessorNode,
723
- AssignmentNode: AssignmentNode,
724
722
  IndexNode: IndexNode,
725
- FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
723
+ AssignmentNode: AssignmentNode,
726
724
  ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
727
725
  Index: _pureFunctionsAnyGenerated.Index,
726
+ FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
728
727
  Spa: _pureFunctionsAnyGenerated.Spa,
729
728
  Unit: _pureFunctionsAnyGenerated.Unit,
730
729
  SymbolNode: SymbolNode,
@@ -113,6 +113,21 @@ var ArrayNode = (0, _factoriesNumber.createArrayNode)({
113
113
  Node: Node
114
114
  });
115
115
  exports.ArrayNode = ArrayNode;
116
+ var simplifyConstant = (0, _factoriesNumber.createSimplifyConstant)({
117
+ AccessorNode: AccessorNode,
118
+ ArrayNode: ArrayNode,
119
+ ConstantNode: ConstantNode,
120
+ FunctionNode: FunctionNode,
121
+ IndexNode: IndexNode,
122
+ ObjectNode: ObjectNode,
123
+ OperatorNode: OperatorNode,
124
+ SymbolNode: SymbolNode,
125
+ config: _configReadonly.config,
126
+ mathWithTransform: mathWithTransform,
127
+ matrix: _pureFunctionsNumberGenerated.matrix,
128
+ typed: _pureFunctionsNumberGenerated.typed
129
+ });
130
+ exports.simplifyConstant = simplifyConstant;
116
131
  var parse = (0, _factoriesNumber.createParse)({
117
132
  AccessorNode: AccessorNode,
118
133
  ArrayNode: ArrayNode,
@@ -143,7 +158,7 @@ var resolve = (0, _factoriesNumber.createResolve)({
143
158
  typed: _pureFunctionsNumberGenerated.typed
144
159
  });
145
160
  exports.resolve = resolve;
146
- var simplifyConstant = (0, _factoriesNumber.createSimplifyConstant)({
161
+ var simplifyCore = (0, _factoriesNumber.createSimplifyCore)({
147
162
  AccessorNode: AccessorNode,
148
163
  ArrayNode: ArrayNode,
149
164
  ConstantNode: ConstantNode,
@@ -151,14 +166,19 @@ var simplifyConstant = (0, _factoriesNumber.createSimplifyConstant)({
151
166
  IndexNode: IndexNode,
152
167
  ObjectNode: ObjectNode,
153
168
  OperatorNode: OperatorNode,
169
+ ParenthesisNode: ParenthesisNode,
154
170
  SymbolNode: SymbolNode,
155
- config: _configReadonly.config,
156
- mathWithTransform: mathWithTransform,
157
- matrix: _pureFunctionsNumberGenerated.matrix,
171
+ add: _pureFunctionsNumberGenerated.add,
172
+ divide: _pureFunctionsNumberGenerated.divide,
173
+ equal: _pureFunctionsNumberGenerated.equal,
174
+ isZero: _pureFunctionsNumberGenerated.isZero,
175
+ multiply: _pureFunctionsNumberGenerated.multiply,
158
176
  parse: parse,
177
+ pow: _pureFunctionsNumberGenerated.pow,
178
+ subtract: _pureFunctionsNumberGenerated.subtract,
159
179
  typed: _pureFunctionsNumberGenerated.typed
160
180
  });
161
- exports.simplifyConstant = simplifyConstant;
181
+ exports.simplifyCore = simplifyCore;
162
182
  var compile = (0, _factoriesNumber.createCompile)({
163
183
  parse: parse,
164
184
  typed: _pureFunctionsNumberGenerated.typed
@@ -177,38 +197,6 @@ var Parser = (0, _factoriesNumber.createParserClass)({
177
197
  evaluate: evaluate
178
198
  });
179
199
  exports.Parser = Parser;
180
- var simplifyCore = (0, _factoriesNumber.createSimplifyCore)({
181
- AccessorNode: AccessorNode,
182
- ArrayNode: ArrayNode,
183
- ConstantNode: ConstantNode,
184
- FunctionNode: FunctionNode,
185
- IndexNode: IndexNode,
186
- ObjectNode: ObjectNode,
187
- OperatorNode: OperatorNode,
188
- ParenthesisNode: ParenthesisNode,
189
- SymbolNode: SymbolNode,
190
- add: _pureFunctionsNumberGenerated.add,
191
- divide: _pureFunctionsNumberGenerated.divide,
192
- equal: _pureFunctionsNumberGenerated.equal,
193
- isZero: _pureFunctionsNumberGenerated.isZero,
194
- multiply: _pureFunctionsNumberGenerated.multiply,
195
- parse: parse,
196
- pow: _pureFunctionsNumberGenerated.pow,
197
- subtract: _pureFunctionsNumberGenerated.subtract,
198
- typed: _pureFunctionsNumberGenerated.typed
199
- });
200
- exports.simplifyCore = simplifyCore;
201
- var help = (0, _factoriesNumber.createHelp)({
202
- Help: Help,
203
- mathWithTransform: mathWithTransform,
204
- typed: _pureFunctionsNumberGenerated.typed
205
- });
206
- exports.help = help;
207
- var parser = (0, _factoriesNumber.createParser)({
208
- Parser: Parser,
209
- typed: _pureFunctionsNumberGenerated.typed
210
- });
211
- exports.parser = parser;
212
200
  var simplify = (0, _factoriesNumber.createSimplify)({
213
201
  AccessorNode: AccessorNode,
214
202
  ArrayNode: ArrayNode,
@@ -278,6 +266,17 @@ var rationalize = (0, _factoriesNumber.createRationalize)({
278
266
  typed: _pureFunctionsNumberGenerated.typed
279
267
  });
280
268
  exports.rationalize = rationalize;
269
+ var help = (0, _factoriesNumber.createHelp)({
270
+ Help: Help,
271
+ mathWithTransform: mathWithTransform,
272
+ typed: _pureFunctionsNumberGenerated.typed
273
+ });
274
+ exports.help = help;
275
+ var parser = (0, _factoriesNumber.createParser)({
276
+ Parser: Parser,
277
+ typed: _pureFunctionsNumberGenerated.typed
278
+ });
279
+ exports.parser = parser;
281
280
  (0, _extends2["default"])(math, {
282
281
  e: _pureFunctionsNumberGenerated.e,
283
282
  "false": _pureFunctionsNumberGenerated._false,
@@ -429,6 +428,7 @@ exports.rationalize = rationalize;
429
428
  isPrime: _pureFunctionsNumberGenerated.isPrime,
430
429
  numeric: _pureFunctionsNumberGenerated.numeric,
431
430
  prod: _pureFunctionsNumberGenerated.prod,
431
+ simplifyConstant: simplifyConstant,
432
432
  bellNumbers: _pureFunctionsNumberGenerated.bellNumbers,
433
433
  gcd: _pureFunctionsNumberGenerated.gcd,
434
434
  mad: _pureFunctionsNumberGenerated.mad,
@@ -436,16 +436,15 @@ exports.rationalize = rationalize;
436
436
  max: _pureFunctionsNumberGenerated.max,
437
437
  parse: parse,
438
438
  resolve: resolve,
439
- simplifyConstant: simplifyConstant,
439
+ simplifyCore: simplifyCore,
440
440
  compile: compile,
441
441
  evaluate: evaluate,
442
- simplifyCore: simplifyCore,
443
- help: help,
444
- parser: parser,
445
442
  simplify: simplify,
446
443
  derivative: derivative,
447
- rationalize: rationalize,
448
444
  min: _pureFunctionsNumberGenerated.min,
445
+ rationalize: rationalize,
446
+ help: help,
447
+ parser: parser,
449
448
  config: _configReadonly.config
450
449
  });
451
450
  (0, _extends2["default"])(mathWithTransform, math, {