159 lines
5.3 KiB
JavaScript
159 lines
5.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.createSmallerNumber = exports.createSmaller = void 0;
|
|
|
|
var _nearlyEqual = require("../../utils/bignumber/nearlyEqual.js");
|
|
|
|
var _number = require("../../utils/number.js");
|
|
|
|
var _factory = require("../../utils/factory.js");
|
|
|
|
var _algorithm = require("../../type/matrix/utils/algorithm03.js");
|
|
|
|
var _algorithm2 = require("../../type/matrix/utils/algorithm07.js");
|
|
|
|
var _algorithm3 = require("../../type/matrix/utils/algorithm12.js");
|
|
|
|
var _algorithm4 = require("../../type/matrix/utils/algorithm14.js");
|
|
|
|
var _algorithm5 = require("../../type/matrix/utils/algorithm13.js");
|
|
|
|
var name = 'smaller';
|
|
var dependencies = ['typed', 'config', 'matrix', 'DenseMatrix'];
|
|
var createSmaller = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
|
|
var typed = _ref.typed,
|
|
config = _ref.config,
|
|
matrix = _ref.matrix,
|
|
DenseMatrix = _ref.DenseMatrix;
|
|
var algorithm03 = (0, _algorithm.createAlgorithm03)({
|
|
typed: typed
|
|
});
|
|
var algorithm07 = (0, _algorithm2.createAlgorithm07)({
|
|
typed: typed,
|
|
DenseMatrix: DenseMatrix
|
|
});
|
|
var algorithm12 = (0, _algorithm3.createAlgorithm12)({
|
|
typed: typed,
|
|
DenseMatrix: DenseMatrix
|
|
});
|
|
var algorithm13 = (0, _algorithm5.createAlgorithm13)({
|
|
typed: typed
|
|
});
|
|
var algorithm14 = (0, _algorithm4.createAlgorithm14)({
|
|
typed: typed
|
|
});
|
|
/**
|
|
* Test whether value x is smaller than y.
|
|
*
|
|
* The function returns true when x is smaller than y and the relative
|
|
* difference between x and y is smaller than the configured epsilon. The
|
|
* function cannot be used to compare values smaller than approximately 2.22e-16.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
* Strings are compared by their numerical value.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.smaller(x, y)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.smaller(2, 3) // returns true
|
|
* math.smaller(5, 2 * 2) // returns false
|
|
*
|
|
* const a = math.unit('5 cm')
|
|
* const b = math.unit('2 inch')
|
|
* math.smaller(a, b) // returns true
|
|
*
|
|
* See also:
|
|
*
|
|
* equal, unequal, smallerEq, smaller, smallerEq, compare
|
|
*
|
|
* @param {number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix} x First value to compare
|
|
* @param {number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix} y Second value to compare
|
|
* @return {boolean | Array | Matrix} Returns true when the x is smaller than y, else returns false
|
|
*/
|
|
|
|
return typed(name, {
|
|
'boolean, boolean': function booleanBoolean(x, y) {
|
|
return x < y;
|
|
},
|
|
'number, number': function numberNumber(x, y) {
|
|
return x < y && !(0, _number.nearlyEqual)(x, y, config.epsilon);
|
|
},
|
|
'BigNumber, BigNumber': function BigNumberBigNumber(x, y) {
|
|
return x.lt(y) && !(0, _nearlyEqual.nearlyEqual)(x, y, config.epsilon);
|
|
},
|
|
'Fraction, Fraction': function FractionFraction(x, y) {
|
|
return x.compare(y) === -1;
|
|
},
|
|
'Complex, Complex': function ComplexComplex(x, y) {
|
|
throw new TypeError('No ordering relation is defined for complex numbers');
|
|
},
|
|
'Unit, Unit': function UnitUnit(x, y) {
|
|
if (!x.equalBase(y)) {
|
|
throw new Error('Cannot compare units with different base');
|
|
}
|
|
|
|
return this(x.value, y.value);
|
|
},
|
|
'SparseMatrix, SparseMatrix': function SparseMatrixSparseMatrix(x, y) {
|
|
return algorithm07(x, y, this);
|
|
},
|
|
'SparseMatrix, DenseMatrix': function SparseMatrixDenseMatrix(x, y) {
|
|
return algorithm03(y, x, this, true);
|
|
},
|
|
'DenseMatrix, SparseMatrix': function DenseMatrixSparseMatrix(x, y) {
|
|
return algorithm03(x, y, this, false);
|
|
},
|
|
'DenseMatrix, DenseMatrix': function DenseMatrixDenseMatrix(x, y) {
|
|
return algorithm13(x, y, this);
|
|
},
|
|
'Array, Array': function ArrayArray(x, y) {
|
|
// use matrix implementation
|
|
return this(matrix(x), matrix(y)).valueOf();
|
|
},
|
|
'Array, Matrix': function ArrayMatrix(x, y) {
|
|
// use matrix implementation
|
|
return this(matrix(x), y);
|
|
},
|
|
'Matrix, Array': function MatrixArray(x, y) {
|
|
// use matrix implementation
|
|
return this(x, matrix(y));
|
|
},
|
|
'SparseMatrix, any': function SparseMatrixAny(x, y) {
|
|
return algorithm12(x, y, this, false);
|
|
},
|
|
'DenseMatrix, any': function DenseMatrixAny(x, y) {
|
|
return algorithm14(x, y, this, false);
|
|
},
|
|
'any, SparseMatrix': function anySparseMatrix(x, y) {
|
|
return algorithm12(y, x, this, true);
|
|
},
|
|
'any, DenseMatrix': function anyDenseMatrix(x, y) {
|
|
return algorithm14(y, x, this, true);
|
|
},
|
|
'Array, any': function ArrayAny(x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(x), y, this, false).valueOf();
|
|
},
|
|
'any, Array': function anyArray(x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(y), x, this, true).valueOf();
|
|
}
|
|
});
|
|
});
|
|
exports.createSmaller = createSmaller;
|
|
var createSmallerNumber = /* #__PURE__ */(0, _factory.factory)(name, ['typed', 'config'], function (_ref2) {
|
|
var typed = _ref2.typed,
|
|
config = _ref2.config;
|
|
return typed(name, {
|
|
'number, number': function numberNumber(x, y) {
|
|
return x < y && !(0, _number.nearlyEqual)(x, y, config.epsilon);
|
|
}
|
|
});
|
|
});
|
|
exports.createSmallerNumber = createSmallerNumber; |