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 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();