pimath 0.0.97 → 0.0.98
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.
- package/dist/pi.js +2 -2
- package/dist/pi.js.map +1 -1
- package/dist/pi.min.js +1 -1
- package/dist/pi.min.js.map +1 -1
- package/esm/maths/algebra/rational.d.ts +2 -1
- package/esm/maths/algebra/rational.js +2 -2
- package/esm/maths/algebra/rational.js.map +1 -1
- package/esm/maths/algebra/study/rationalStudy.d.ts +1 -1
- package/esm/maths/algebra/study/rationalStudy.js.map +1 -1
- package/package.json +1 -1
- package/src/maths/algebra/rational.ts +3 -2
- package/src/maths/algebra/study/rationalStudy.ts +1 -1
package/dist/pi.js
CHANGED
|
@@ -3542,8 +3542,8 @@ class Rational {
|
|
|
3542
3542
|
this.evaluateAsNumeric = (values) => {
|
|
3543
3543
|
return this._numerator.evaluateAsNumeric(values) / this._denominator.evaluateAsNumeric(values);
|
|
3544
3544
|
};
|
|
3545
|
-
this.study = () => {
|
|
3546
|
-
return new rationalStudy_1.RationalStudy(this);
|
|
3545
|
+
this.study = (config) => {
|
|
3546
|
+
return new rationalStudy_1.RationalStudy(this, config);
|
|
3547
3547
|
};
|
|
3548
3548
|
if (numerator instanceof polynom_1.Polynom) {
|
|
3549
3549
|
this._numerator = numerator.clone();
|