UNPKG

25.7 kBJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6Object.defineProperty(exports, "docs", {
7 enumerable: true,
8 get: function get() {
9 return _embeddedDocs.embeddedDocs;
10 }
11});
12exports.derivative = exports.parser = exports.rationalize = exports.simplify = exports.compile = exports.help = exports.Parser = exports.Help = exports.evaluate = exports.parse = exports.FunctionNode = exports.SymbolNode = exports.AssignmentNode = exports.IndexNode = exports.AccessorNode = exports.chain = exports.FunctionAssignmentNode = exports.RangeNode = exports.OperatorNode = exports.ConditionalNode = exports.reviver = exports.Chain = exports.RelationalNode = exports.ParenthesisNode = exports.ObjectNode = exports.ConstantNode = exports.BlockNode = exports.ArrayNode = exports.Node = void 0;
13
14var _configReadonly = require("./configReadonly.js");
15
16var _factoriesAny = require("../factoriesAny.js");
17
18var _pureFunctionsAnyGenerated = require("./pureFunctionsAny.generated.js");
19
20var _embeddedDocs = require("../expression/embeddedDocs/embeddedDocs.js");
21
22function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
23
24var math = {}; // NOT pure!
25
26var mathWithTransform = {}; // NOT pure!
27
28var classes = {}; // NOT pure!
29
30var Node = (0, _factoriesAny.createNode)({
31 mathWithTransform: mathWithTransform
32});
33exports.Node = Node;
34var ArrayNode = (0, _factoriesAny.createArrayNode)({
35 Node: Node
36});
37exports.ArrayNode = ArrayNode;
38var BlockNode = (0, _factoriesAny.createBlockNode)({
39 Node: Node,
40 ResultSet: _pureFunctionsAnyGenerated.ResultSet
41});
42exports.BlockNode = BlockNode;
43var ConstantNode = (0, _factoriesAny.createConstantNode)({
44 Node: Node
45});
46exports.ConstantNode = ConstantNode;
47var ObjectNode = (0, _factoriesAny.createObjectNode)({
48 Node: Node
49});
50exports.ObjectNode = ObjectNode;
51var ParenthesisNode = (0, _factoriesAny.createParenthesisNode)({
52 Node: Node
53});
54exports.ParenthesisNode = ParenthesisNode;
55var RelationalNode = (0, _factoriesAny.createRelationalNode)({
56 Node: Node
57});
58exports.RelationalNode = RelationalNode;
59var Chain = (0, _factoriesAny.createChainClass)({
60 math: math
61});
62exports.Chain = Chain;
63var reviver = (0, _factoriesAny.createReviver)({
64 classes: classes
65});
66exports.reviver = reviver;
67var ConditionalNode = (0, _factoriesAny.createConditionalNode)({
68 Node: Node
69});
70exports.ConditionalNode = ConditionalNode;
71var OperatorNode = (0, _factoriesAny.createOperatorNode)({
72 Node: Node
73});
74exports.OperatorNode = OperatorNode;
75var RangeNode = (0, _factoriesAny.createRangeNode)({
76 Node: Node
77});
78exports.RangeNode = RangeNode;
79var FunctionAssignmentNode = (0, _factoriesAny.createFunctionAssignmentNode)({
80 Node: Node,
81 typed: _pureFunctionsAnyGenerated.typed
82});
83exports.FunctionAssignmentNode = FunctionAssignmentNode;
84var chain = (0, _factoriesAny.createChain)({
85 Chain: Chain,
86 typed: _pureFunctionsAnyGenerated.typed
87});
88exports.chain = chain;
89var AccessorNode = (0, _factoriesAny.createAccessorNode)({
90 Node: Node,
91 subset: _pureFunctionsAnyGenerated.subset
92});
93exports.AccessorNode = AccessorNode;
94var IndexNode = (0, _factoriesAny.createIndexNode)({
95 Node: Node,
96 Range: _pureFunctionsAnyGenerated.Range,
97 size: _pureFunctionsAnyGenerated.size
98});
99exports.IndexNode = IndexNode;
100var AssignmentNode = (0, _factoriesAny.createAssignmentNode)({
101 matrix: _pureFunctionsAnyGenerated.matrix,
102 Node: Node,
103 subset: _pureFunctionsAnyGenerated.subset
104});
105exports.AssignmentNode = AssignmentNode;
106var SymbolNode = (0, _factoriesAny.createSymbolNode)({
107 Unit: _pureFunctionsAnyGenerated.Unit,
108 Node: Node,
109 math: math
110});
111exports.SymbolNode = SymbolNode;
112var FunctionNode = (0, _factoriesAny.createFunctionNode)({
113 Node: Node,
114 SymbolNode: SymbolNode,
115 math: math
116});
117exports.FunctionNode = FunctionNode;
118var parse = (0, _factoriesAny.createParse)({
119 AccessorNode: AccessorNode,
120 ArrayNode: ArrayNode,
121 AssignmentNode: AssignmentNode,
122 BlockNode: BlockNode,
123 ConditionalNode: ConditionalNode,
124 ConstantNode: ConstantNode,
125 FunctionAssignmentNode: FunctionAssignmentNode,
126 FunctionNode: FunctionNode,
127 IndexNode: IndexNode,
128 ObjectNode: ObjectNode,
129 OperatorNode: OperatorNode,
130 ParenthesisNode: ParenthesisNode,
131 RangeNode: RangeNode,
132 RelationalNode: RelationalNode,
133 SymbolNode: SymbolNode,
134 config: _configReadonly.config,
135 numeric: _pureFunctionsAnyGenerated.numeric,
136 typed: _pureFunctionsAnyGenerated.typed
137});
138exports.parse = parse;
139var evaluate = (0, _factoriesAny.createEvaluate)({
140 parse: parse,
141 typed: _pureFunctionsAnyGenerated.typed
142});
143exports.evaluate = evaluate;
144var Help = (0, _factoriesAny.createHelpClass)({
145 parse: parse
146});
147exports.Help = Help;
148var Parser = (0, _factoriesAny.createParserClass)({
149 parse: parse
150});
151exports.Parser = Parser;
152var help = (0, _factoriesAny.createHelp)({
153 Help: Help,
154 mathWithTransform: mathWithTransform,
155 typed: _pureFunctionsAnyGenerated.typed
156});
157exports.help = help;
158var compile = (0, _factoriesAny.createCompile)({
159 parse: parse,
160 typed: _pureFunctionsAnyGenerated.typed
161});
162exports.compile = compile;
163var simplify = (0, _factoriesAny.createSimplify)({
164 bignumber: _pureFunctionsAnyGenerated.bignumber,
165 fraction: _pureFunctionsAnyGenerated.fraction,
166 ConstantNode: ConstantNode,
167 FunctionNode: FunctionNode,
168 OperatorNode: OperatorNode,
169 ParenthesisNode: ParenthesisNode,
170 SymbolNode: SymbolNode,
171 add: _pureFunctionsAnyGenerated.add,
172 config: _configReadonly.config,
173 divide: _pureFunctionsAnyGenerated.divide,
174 equal: _pureFunctionsAnyGenerated.equal,
175 isZero: _pureFunctionsAnyGenerated.isZero,
176 mathWithTransform: mathWithTransform,
177 multiply: _pureFunctionsAnyGenerated.multiply,
178 parse: parse,
179 pow: _pureFunctionsAnyGenerated.pow,
180 subtract: _pureFunctionsAnyGenerated.subtract,
181 typed: _pureFunctionsAnyGenerated.typed
182});
183exports.simplify = simplify;
184var rationalize = (0, _factoriesAny.createRationalize)({
185 bignumber: _pureFunctionsAnyGenerated.bignumber,
186 fraction: _pureFunctionsAnyGenerated.fraction,
187 ConstantNode: ConstantNode,
188 FunctionNode: FunctionNode,
189 OperatorNode: OperatorNode,
190 ParenthesisNode: ParenthesisNode,
191 SymbolNode: SymbolNode,
192 add: _pureFunctionsAnyGenerated.add,
193 config: _configReadonly.config,
194 divide: _pureFunctionsAnyGenerated.divide,
195 equal: _pureFunctionsAnyGenerated.equal,
196 isZero: _pureFunctionsAnyGenerated.isZero,
197 mathWithTransform: mathWithTransform,
198 multiply: _pureFunctionsAnyGenerated.multiply,
199 parse: parse,
200 pow: _pureFunctionsAnyGenerated.pow,
201 simplify: simplify,
202 subtract: _pureFunctionsAnyGenerated.subtract,
203 typed: _pureFunctionsAnyGenerated.typed
204});
205exports.rationalize = rationalize;
206var parser = (0, _factoriesAny.createParser)({
207 Parser: Parser,
208 typed: _pureFunctionsAnyGenerated.typed
209});
210exports.parser = parser;
211var derivative = (0, _factoriesAny.createDerivative)({
212 ConstantNode: ConstantNode,
213 FunctionNode: FunctionNode,
214 OperatorNode: OperatorNode,
215 ParenthesisNode: ParenthesisNode,
216 SymbolNode: SymbolNode,
217 config: _configReadonly.config,
218 equal: _pureFunctionsAnyGenerated.equal,
219 isZero: _pureFunctionsAnyGenerated.isZero,
220 numeric: _pureFunctionsAnyGenerated.numeric,
221 parse: parse,
222 simplify: simplify,
223 typed: _pureFunctionsAnyGenerated.typed
224});
225exports.derivative = derivative;
226
227_extends(math, {
228 reviver: reviver,
229 "false": _pureFunctionsAnyGenerated._false,
230 "null": _pureFunctionsAnyGenerated._null,
231 "true": _pureFunctionsAnyGenerated._true,
232 replacer: _pureFunctionsAnyGenerated.replacer,
233 i: _pureFunctionsAnyGenerated.i,
234 LN10: _pureFunctionsAnyGenerated.LN10,
235 LOG10E: _pureFunctionsAnyGenerated.LOG10E,
236 NaN: _pureFunctionsAnyGenerated._NaN,
237 pi: _pureFunctionsAnyGenerated.pi,
238 SQRT1_2: _pureFunctionsAnyGenerated.SQRT1_2,
239 tau: _pureFunctionsAnyGenerated.tau,
240 efimovFactor: _pureFunctionsAnyGenerated.efimovFactor,
241 fineStructure: _pureFunctionsAnyGenerated.fineStructure,
242 sackurTetrode: _pureFunctionsAnyGenerated.sackurTetrode,
243 weakMixingAngle: _pureFunctionsAnyGenerated.weakMixingAngle,
244 e: _pureFunctionsAnyGenerated.e,
245 Infinity: _pureFunctionsAnyGenerated._Infinity,
246 LOG2E: _pureFunctionsAnyGenerated.LOG2E,
247 'PI': _pureFunctionsAnyGenerated.pi,
248 version: _pureFunctionsAnyGenerated.version,
249 'E': _pureFunctionsAnyGenerated.e,
250 phi: _pureFunctionsAnyGenerated.phi,
251 typed: _pureFunctionsAnyGenerated.typed,
252 isInteger: _pureFunctionsAnyGenerated.isInteger,
253 isNumeric: _pureFunctionsAnyGenerated.isNumeric,
254 isPositive: _pureFunctionsAnyGenerated.isPositive,
255 isNaN: _pureFunctionsAnyGenerated.isNaN,
256 equalScalar: _pureFunctionsAnyGenerated.equalScalar,
257 number: _pureFunctionsAnyGenerated.number,
258 "boolean": _pureFunctionsAnyGenerated["boolean"],
259 complex: _pureFunctionsAnyGenerated.complex,
260 splitUnit: _pureFunctionsAnyGenerated.splitUnit,
261 unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
262 apply: _pureFunctionsAnyGenerated.apply,
263 cube: _pureFunctionsAnyGenerated.cube,
264 expm1: _pureFunctionsAnyGenerated.expm1,
265 log10: _pureFunctionsAnyGenerated.log10,
266 multiplyScalar: _pureFunctionsAnyGenerated.multiplyScalar,
267 sign: _pureFunctionsAnyGenerated.sign,
268 square: _pureFunctionsAnyGenerated.square,
269 bitNot: _pureFunctionsAnyGenerated.bitNot,
270 arg: _pureFunctionsAnyGenerated.arg,
271 im: _pureFunctionsAnyGenerated.im,
272 not: _pureFunctionsAnyGenerated.not,
273 filter: _pureFunctionsAnyGenerated.filter,
274 forEach: _pureFunctionsAnyGenerated.forEach,
275 map: _pureFunctionsAnyGenerated.map,
276 erf: _pureFunctionsAnyGenerated.erf,
277 format: _pureFunctionsAnyGenerated.format,
278 oct: _pureFunctionsAnyGenerated.oct,
279 print: _pureFunctionsAnyGenerated.print,
280 isPrime: _pureFunctionsAnyGenerated.isPrime,
281 acos: _pureFunctionsAnyGenerated.acos,
282 acot: _pureFunctionsAnyGenerated.acot,
283 acsc: _pureFunctionsAnyGenerated.acsc,
284 asec: _pureFunctionsAnyGenerated.asec,
285 asin: _pureFunctionsAnyGenerated.asin,
286 atan: _pureFunctionsAnyGenerated.atan,
287 atanh: _pureFunctionsAnyGenerated.atanh,
288 cosh: _pureFunctionsAnyGenerated.cosh,
289 coth: _pureFunctionsAnyGenerated.coth,
290 csch: _pureFunctionsAnyGenerated.csch,
291 sech: _pureFunctionsAnyGenerated.sech,
292 sinh: _pureFunctionsAnyGenerated.sinh,
293 tanh: _pureFunctionsAnyGenerated.tanh,
294 chain: chain,
295 combinations: _pureFunctionsAnyGenerated.combinations,
296 pickRandom: _pureFunctionsAnyGenerated.pickRandom,
297 randomInt: _pureFunctionsAnyGenerated.randomInt,
298 LN2: _pureFunctionsAnyGenerated.LN2,
299 clone: _pureFunctionsAnyGenerated.clone,
300 hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
301 typeOf: _pureFunctionsAnyGenerated.typeOf,
302 string: _pureFunctionsAnyGenerated.string,
303 fraction: _pureFunctionsAnyGenerated.fraction,
304 unaryMinus: _pureFunctionsAnyGenerated.unaryMinus,
305 addScalar: _pureFunctionsAnyGenerated.addScalar,
306 exp: _pureFunctionsAnyGenerated.exp,
307 log2: _pureFunctionsAnyGenerated.log2,
308 sqrt: _pureFunctionsAnyGenerated.sqrt,
309 conj: _pureFunctionsAnyGenerated.conj,
310 getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType,
311 mode: _pureFunctionsAnyGenerated.mode,
312 bin: _pureFunctionsAnyGenerated.bin,
313 acosh: _pureFunctionsAnyGenerated.acosh,
314 acsch: _pureFunctionsAnyGenerated.acsch,
315 asinh: _pureFunctionsAnyGenerated.asinh,
316 cos: _pureFunctionsAnyGenerated.cos,
317 csc: _pureFunctionsAnyGenerated.csc,
318 sin: _pureFunctionsAnyGenerated.sin,
319 combinationsWithRep: _pureFunctionsAnyGenerated.combinationsWithRep,
320 random: _pureFunctionsAnyGenerated.random,
321 SQRT2: _pureFunctionsAnyGenerated.SQRT2,
322 isNegative: _pureFunctionsAnyGenerated.isNegative,
323 matrix: _pureFunctionsAnyGenerated.matrix,
324 cbrt: _pureFunctionsAnyGenerated.cbrt,
325 gcd: _pureFunctionsAnyGenerated.gcd,
326 mod: _pureFunctionsAnyGenerated.mod,
327 nthRoot: _pureFunctionsAnyGenerated.nthRoot,
328 xgcd: _pureFunctionsAnyGenerated.xgcd,
329 bitAnd: _pureFunctionsAnyGenerated.bitAnd,
330 bitXor: _pureFunctionsAnyGenerated.bitXor,
331 or: _pureFunctionsAnyGenerated.or,
332 concat: _pureFunctionsAnyGenerated.concat,
333 diag: _pureFunctionsAnyGenerated.diag,
334 identity: _pureFunctionsAnyGenerated.identity,
335 ones: _pureFunctionsAnyGenerated.ones,
336 reshape: _pureFunctionsAnyGenerated.reshape,
337 size: _pureFunctionsAnyGenerated.size,
338 subset: _pureFunctionsAnyGenerated.subset,
339 zeros: _pureFunctionsAnyGenerated.zeros,
340 hex: _pureFunctionsAnyGenerated.hex,
341 round: _pureFunctionsAnyGenerated.round,
342 leftShift: _pureFunctionsAnyGenerated.leftShift,
343 rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
344 compare: _pureFunctionsAnyGenerated.compare,
345 compareText: _pureFunctionsAnyGenerated.compareText,
346 smaller: _pureFunctionsAnyGenerated.smaller,
347 larger: _pureFunctionsAnyGenerated.larger,
348 unequal: _pureFunctionsAnyGenerated.unequal,
349 sparse: _pureFunctionsAnyGenerated.sparse,
350 acoth: _pureFunctionsAnyGenerated.acoth,
351 atan2: _pureFunctionsAnyGenerated.atan2,
352 sec: _pureFunctionsAnyGenerated.sec,
353 add: _pureFunctionsAnyGenerated.add,
354 dot: _pureFunctionsAnyGenerated.dot,
355 composition: _pureFunctionsAnyGenerated.composition,
356 isZero: _pureFunctionsAnyGenerated.isZero,
357 abs: _pureFunctionsAnyGenerated.abs,
358 floor: _pureFunctionsAnyGenerated.floor,
359 multiply: _pureFunctionsAnyGenerated.multiply,
360 dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
361 re: _pureFunctionsAnyGenerated.re,
362 flatten: _pureFunctionsAnyGenerated.flatten,
363 resize: _pureFunctionsAnyGenerated.resize,
364 squeeze: _pureFunctionsAnyGenerated.squeeze,
365 to: _pureFunctionsAnyGenerated.to,
366 pow: _pureFunctionsAnyGenerated.pow,
367 dotPow: _pureFunctionsAnyGenerated.dotPow,
368 rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
369 compareNatural: _pureFunctionsAnyGenerated.compareNatural,
370 equalText: _pureFunctionsAnyGenerated.equalText,
371 largerEq: _pureFunctionsAnyGenerated.largerEq,
372 partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
373 asech: _pureFunctionsAnyGenerated.asech,
374 tan: _pureFunctionsAnyGenerated.tan,
375 setDifference: _pureFunctionsAnyGenerated.setDifference,
376 setIntersect: _pureFunctionsAnyGenerated.setIntersect,
377 setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
378 setSize: _pureFunctionsAnyGenerated.setSize,
379 trace: _pureFunctionsAnyGenerated.trace,
380 quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
381 gamma: _pureFunctionsAnyGenerated.gamma,
382 bignumber: _pureFunctionsAnyGenerated.bignumber,
383 lcm: _pureFunctionsAnyGenerated.lcm,
384 bitOr: _pureFunctionsAnyGenerated.bitOr,
385 kron: _pureFunctionsAnyGenerated.kron,
386 transpose: _pureFunctionsAnyGenerated.transpose,
387 numeric: _pureFunctionsAnyGenerated.numeric,
388 and: _pureFunctionsAnyGenerated.and,
389 smallerEq: _pureFunctionsAnyGenerated.smallerEq,
390 sort: _pureFunctionsAnyGenerated.sort,
391 min: _pureFunctionsAnyGenerated.min,
392 cot: _pureFunctionsAnyGenerated.cot,
393 setDistinct: _pureFunctionsAnyGenerated.setDistinct,
394 setPowerset: _pureFunctionsAnyGenerated.setPowerset,
395 index: _pureFunctionsAnyGenerated.index,
396 sum: _pureFunctionsAnyGenerated.sum,
397 factorial: _pureFunctionsAnyGenerated.factorial,
398 permutations: _pureFunctionsAnyGenerated.permutations,
399 ceil: _pureFunctionsAnyGenerated.ceil,
400 subtract: _pureFunctionsAnyGenerated.subtract,
401 cross: _pureFunctionsAnyGenerated.cross,
402 range: _pureFunctionsAnyGenerated.range,
403 row: _pureFunctionsAnyGenerated.row,
404 prod: _pureFunctionsAnyGenerated.prod,
405 equal: _pureFunctionsAnyGenerated.equal,
406 max: _pureFunctionsAnyGenerated.max,
407 setCartesian: _pureFunctionsAnyGenerated.setCartesian,
408 setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
409 fix: _pureFunctionsAnyGenerated.fix,
410 column: _pureFunctionsAnyGenerated.column,
411 diff: _pureFunctionsAnyGenerated.diff,
412 ctranspose: _pureFunctionsAnyGenerated.ctranspose,
413 deepEqual: _pureFunctionsAnyGenerated.deepEqual,
414 setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
415 xor: _pureFunctionsAnyGenerated.xor,
416 divideScalar: _pureFunctionsAnyGenerated.divideScalar,
417 nthRoots: _pureFunctionsAnyGenerated.nthRoots,
418 lsolve: _pureFunctionsAnyGenerated.lsolve,
419 lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
420 setUnion: _pureFunctionsAnyGenerated.setUnion,
421 lup: _pureFunctionsAnyGenerated.lup,
422 slu: _pureFunctionsAnyGenerated.slu,
423 det: _pureFunctionsAnyGenerated.det,
424 distance: _pureFunctionsAnyGenerated.distance,
425 stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
426 catalan: _pureFunctionsAnyGenerated.catalan,
427 count: _pureFunctionsAnyGenerated.count,
428 log: _pureFunctionsAnyGenerated.log,
429 dotDivide: _pureFunctionsAnyGenerated.dotDivide,
430 usolveAll: _pureFunctionsAnyGenerated.usolveAll,
431 hypot: _pureFunctionsAnyGenerated.hypot,
432 qr: _pureFunctionsAnyGenerated.qr,
433 inv: _pureFunctionsAnyGenerated.inv,
434 expm: _pureFunctionsAnyGenerated.expm,
435 divide: _pureFunctionsAnyGenerated.divide,
436 mean: _pureFunctionsAnyGenerated.mean,
437 variance: _pureFunctionsAnyGenerated.variance,
438 kldivergence: _pureFunctionsAnyGenerated.kldivergence,
439 bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
440 log1p: _pureFunctionsAnyGenerated.log1p,
441 createUnit: _pureFunctionsAnyGenerated.createUnit,
442 eigs: _pureFunctionsAnyGenerated.eigs,
443 intersect: _pureFunctionsAnyGenerated.intersect,
444 std: _pureFunctionsAnyGenerated.std,
445 atomicMass: _pureFunctionsAnyGenerated.atomicMass,
446 bohrMagneton: _pureFunctionsAnyGenerated.bohrMagneton,
447 boltzmann: _pureFunctionsAnyGenerated.boltzmann,
448 conductanceQuantum: _pureFunctionsAnyGenerated.conductanceQuantum,
449 deuteronMass: _pureFunctionsAnyGenerated.deuteronMass,
450 electronMass: _pureFunctionsAnyGenerated.electronMass,
451 faraday: _pureFunctionsAnyGenerated.faraday,
452 firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
453 gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
454 hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
455 klitzing: _pureFunctionsAnyGenerated.klitzing,
456 magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
457 molarMass: _pureFunctionsAnyGenerated.molarMass,
458 molarPlanckConstant: _pureFunctionsAnyGenerated.molarPlanckConstant,
459 neutronMass: _pureFunctionsAnyGenerated.neutronMass,
460 planckCharge: _pureFunctionsAnyGenerated.planckCharge,
461 planckLength: _pureFunctionsAnyGenerated.planckLength,
462 planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
463 protonMass: _pureFunctionsAnyGenerated.protonMass,
464 reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
465 secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
466 stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
467 vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
468 usolve: _pureFunctionsAnyGenerated.usolve,
469 norm: _pureFunctionsAnyGenerated.norm,
470 lusolve: _pureFunctionsAnyGenerated.lusolve,
471 sqrtm: _pureFunctionsAnyGenerated.sqrtm,
472 multinomial: _pureFunctionsAnyGenerated.multinomial,
473 avogadro: _pureFunctionsAnyGenerated.avogadro,
474 classicalElectronRadius: _pureFunctionsAnyGenerated.classicalElectronRadius,
475 electricConstant: _pureFunctionsAnyGenerated.electricConstant,
476 fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
477 gravity: _pureFunctionsAnyGenerated.gravity,
478 loschmidt: _pureFunctionsAnyGenerated.loschmidt,
479 molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
480 nuclearMagneton: _pureFunctionsAnyGenerated.nuclearMagneton,
481 planckMass: _pureFunctionsAnyGenerated.planckMass,
482 quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
483 speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
484 wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
485 rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
486 median: _pureFunctionsAnyGenerated.median,
487 bohrRadius: _pureFunctionsAnyGenerated.bohrRadius,
488 elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
489 inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
490 molarVolume: _pureFunctionsAnyGenerated.molarVolume,
491 planckTime: _pureFunctionsAnyGenerated.planckTime,
492 thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
493 rotate: _pureFunctionsAnyGenerated.rotate,
494 parse: parse,
495 evaluate: evaluate,
496 mad: _pureFunctionsAnyGenerated.mad,
497 coulomb: _pureFunctionsAnyGenerated.coulomb,
498 magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
499 rydberg: _pureFunctionsAnyGenerated.rydberg,
500 unit: _pureFunctionsAnyGenerated.unit,
501 help: help,
502 gasConstant: _pureFunctionsAnyGenerated.gasConstant,
503 compile: compile,
504 simplify: simplify,
505 rationalize: rationalize,
506 parser: parser,
507 planckConstant: _pureFunctionsAnyGenerated.planckConstant,
508 derivative: derivative,
509 config: _configReadonly.config
510});
511
512_extends(mathWithTransform, math, {
513 apply: (0, _factoriesAny.createApplyTransform)({
514 isInteger: _pureFunctionsAnyGenerated.isInteger,
515 typed: _pureFunctionsAnyGenerated.typed
516 }),
517 filter: (0, _factoriesAny.createFilterTransform)({
518 typed: _pureFunctionsAnyGenerated.typed
519 }),
520 map: (0, _factoriesAny.createMapTransform)({
521 typed: _pureFunctionsAnyGenerated.typed
522 }),
523 forEach: (0, _factoriesAny.createForEachTransform)({
524 typed: _pureFunctionsAnyGenerated.typed
525 }),
526 subset: (0, _factoriesAny.createSubsetTransform)({
527 matrix: _pureFunctionsAnyGenerated.matrix,
528 typed: _pureFunctionsAnyGenerated.typed
529 }),
530 index: (0, _factoriesAny.createIndexTransform)({
531 Index: _pureFunctionsAnyGenerated.Index
532 }),
533 concat: (0, _factoriesAny.createConcatTransform)({
534 isInteger: _pureFunctionsAnyGenerated.isInteger,
535 matrix: _pureFunctionsAnyGenerated.matrix,
536 typed: _pureFunctionsAnyGenerated.typed
537 }),
538 max: (0, _factoriesAny.createMaxTransform)({
539 config: _configReadonly.config,
540 larger: _pureFunctionsAnyGenerated.larger,
541 numeric: _pureFunctionsAnyGenerated.numeric,
542 typed: _pureFunctionsAnyGenerated.typed
543 }),
544 min: (0, _factoriesAny.createMinTransform)({
545 config: _configReadonly.config,
546 numeric: _pureFunctionsAnyGenerated.numeric,
547 smaller: _pureFunctionsAnyGenerated.smaller,
548 typed: _pureFunctionsAnyGenerated.typed
549 }),
550 sum: (0, _factoriesAny.createSumTransform)({
551 add: _pureFunctionsAnyGenerated.add,
552 config: _configReadonly.config,
553 numeric: _pureFunctionsAnyGenerated.numeric,
554 typed: _pureFunctionsAnyGenerated.typed
555 }),
556 column: (0, _factoriesAny.createColumnTransform)({
557 Index: _pureFunctionsAnyGenerated.Index,
558 matrix: _pureFunctionsAnyGenerated.matrix,
559 range: _pureFunctionsAnyGenerated.range,
560 typed: _pureFunctionsAnyGenerated.typed
561 }),
562 range: (0, _factoriesAny.createRangeTransform)({
563 bignumber: _pureFunctionsAnyGenerated.bignumber,
564 matrix: _pureFunctionsAnyGenerated.matrix,
565 config: _configReadonly.config,
566 larger: _pureFunctionsAnyGenerated.larger,
567 largerEq: _pureFunctionsAnyGenerated.largerEq,
568 smaller: _pureFunctionsAnyGenerated.smaller,
569 smallerEq: _pureFunctionsAnyGenerated.smallerEq,
570 typed: _pureFunctionsAnyGenerated.typed
571 }),
572 diff: (0, _factoriesAny.createDiffTransform)({
573 bignumber: _pureFunctionsAnyGenerated.bignumber,
574 matrix: _pureFunctionsAnyGenerated.matrix,
575 number: _pureFunctionsAnyGenerated.number,
576 subtract: _pureFunctionsAnyGenerated.subtract,
577 typed: _pureFunctionsAnyGenerated.typed
578 }),
579 row: (0, _factoriesAny.createRowTransform)({
580 Index: _pureFunctionsAnyGenerated.Index,
581 matrix: _pureFunctionsAnyGenerated.matrix,
582 range: _pureFunctionsAnyGenerated.range,
583 typed: _pureFunctionsAnyGenerated.typed
584 }),
585 mean: (0, _factoriesAny.createMeanTransform)({
586 add: _pureFunctionsAnyGenerated.add,
587 divide: _pureFunctionsAnyGenerated.divide,
588 typed: _pureFunctionsAnyGenerated.typed
589 }),
590 variance: (0, _factoriesAny.createVarianceTransform)({
591 add: _pureFunctionsAnyGenerated.add,
592 apply: _pureFunctionsAnyGenerated.apply,
593 divide: _pureFunctionsAnyGenerated.divide,
594 isNaN: _pureFunctionsAnyGenerated.isNaN,
595 multiply: _pureFunctionsAnyGenerated.multiply,
596 subtract: _pureFunctionsAnyGenerated.subtract,
597 typed: _pureFunctionsAnyGenerated.typed
598 }),
599 std: (0, _factoriesAny.createStdTransform)({
600 sqrt: _pureFunctionsAnyGenerated.sqrt,
601 typed: _pureFunctionsAnyGenerated.typed,
602 variance: _pureFunctionsAnyGenerated.variance
603 })
604});
605
606_extends(classes, {
607 ResultSet: _pureFunctionsAnyGenerated.ResultSet,
608 Complex: _pureFunctionsAnyGenerated.Complex,
609 Range: _pureFunctionsAnyGenerated.Range,
610 Node: Node,
611 ArrayNode: ArrayNode,
612 BlockNode: BlockNode,
613 ConstantNode: ConstantNode,
614 ObjectNode: ObjectNode,
615 ParenthesisNode: ParenthesisNode,
616 RelationalNode: RelationalNode,
617 Chain: Chain,
618 BigNumber: _pureFunctionsAnyGenerated.BigNumber,
619 Matrix: _pureFunctionsAnyGenerated.Matrix,
620 ConditionalNode: ConditionalNode,
621 OperatorNode: OperatorNode,
622 Fraction: _pureFunctionsAnyGenerated.Fraction,
623 RangeNode: RangeNode,
624 DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
625 FunctionAssignmentNode: FunctionAssignmentNode,
626 SparseMatrix: _pureFunctionsAnyGenerated.SparseMatrix,
627 ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
628 FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
629 AccessorNode: AccessorNode,
630 IndexNode: IndexNode,
631 Index: _pureFunctionsAnyGenerated.Index,
632 AssignmentNode: AssignmentNode,
633 Spa: _pureFunctionsAnyGenerated.Spa,
634 Unit: _pureFunctionsAnyGenerated.Unit,
635 SymbolNode: SymbolNode,
636 FunctionNode: FunctionNode,
637 Help: Help,
638 Parser: Parser
639});
640
641Chain.createProxy(math);
\No newline at end of file