pimath 0.0.99 → 0.0.101
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 +1 -1
- 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/monom.d.ts +1 -1
- package/esm/maths/algebra/polynom.d.ts +1 -1
- package/esm/maths/algebra/polynom.js +1 -1
- package/esm/maths/algebra/polynom.js.map +1 -1
- package/esm/maths/algebra/study.d.ts +1 -1
- package/esm/maths/coefficients/fraction.d.ts +1 -1
- package/esm/maths/expressions/expression.d.ts +1 -1
- package/esm/maths/expressions/polynomexp.bkp.d.ts +1 -1
- package/esm/maths/expressions/polynomexp.d.ts +1 -1
- package/esm/maths/randomization/rndTypes.d.ts +3 -3
- package/esm/maths/shutingyard.d.ts +2 -2
- package/package.json +10 -10
- package/src/maths/algebra/polynom.ts +1 -1
package/dist/pi.js
CHANGED
|
@@ -2628,7 +2628,7 @@ class Polynom {
|
|
|
2628
2628
|
this.isDeveloped = (polynomString) => {
|
|
2629
2629
|
let P;
|
|
2630
2630
|
// There is at least one parenthese - it is not developed.
|
|
2631
|
-
if (polynomString.
|
|
2631
|
+
if (polynomString.split('(').length + polynomString.split(')').length > 0) {
|
|
2632
2632
|
return false;
|
|
2633
2633
|
}
|
|
2634
2634
|
// Try to build the polynom
|