pimath 0.0.91 → 0.0.92

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.
Files changed (42) hide show
  1. package/.eslintrc.js +23 -23
  2. package/dist/pi.js +359 -275
  3. package/dist/pi.js.map +1 -1
  4. package/dist/pi.min.js +1 -1
  5. package/dist/pi.min.js.map +1 -1
  6. package/docs/assets/main.js +52 -52
  7. package/docs/classes/Logicalset.Logicalset-1.html +4 -4
  8. package/docs/classes/Polynom.Rational.html +3 -3
  9. package/docs/classes/algebra_equation.Equation.html +25 -25
  10. package/docs/classes/algebra_monom.Monom.html +113 -113
  11. package/docs/classes/algebra_polynom.Polynom.html +29 -29
  12. package/docs/classes/coefficients_fraction.Fraction.html +18 -18
  13. package/docs/classes/coefficients_nthroot.NthRoot.html +2 -2
  14. package/docs/classes/geometry_circle.Circle.html +2 -2
  15. package/docs/classes/geometry_line.Line.html +2 -2
  16. package/docs/classes/geometry_triangle.Triangle.html +16 -16
  17. package/docs/classes/numeric.Numeric.html +13 -13
  18. package/docs/classes/shutingyard.Shutingyard.html +17 -17
  19. package/docs/index.html +10 -10
  20. package/docs/interfaces/algebra_equation.ISolution.html +2 -2
  21. package/esm/maths/algebra/monom.d.ts +8 -2
  22. package/esm/maths/algebra/monom.js +20 -0
  23. package/esm/maths/algebra/monom.js.map +1 -1
  24. package/esm/maths/algebra/polynom.d.ts +8 -4
  25. package/esm/maths/algebra/polynom.js +7 -0
  26. package/esm/maths/algebra/polynom.js.map +1 -1
  27. package/esm/maths/algebra/rational.d.ts +8 -4
  28. package/esm/maths/algebra/rational.js +3 -0
  29. package/esm/maths/algebra/rational.js.map +1 -1
  30. package/esm/maths/algebra/study/rationalStudy.d.ts +11 -1
  31. package/esm/maths/algebra/study/rationalStudy.js +62 -13
  32. package/esm/maths/algebra/study/rationalStudy.js.map +1 -1
  33. package/esm/maths/algebra/study.d.ts +13 -4
  34. package/esm/maths/algebra/study.js +10 -3
  35. package/esm/maths/algebra/study.js.map +1 -1
  36. package/package.json +1 -1
  37. package/src/maths/algebra/monom.ts +25 -0
  38. package/src/maths/algebra/polynom.ts +9 -0
  39. package/src/maths/algebra/rational.ts +4 -0
  40. package/src/maths/algebra/study/rationalStudy.ts +68 -9
  41. package/src/maths/algebra/study.ts +11 -2
  42. package/tests/algebra/study.test.ts +8 -10
package/.eslintrc.js CHANGED
@@ -1,24 +1,24 @@
1
- module.exports = {
2
- "env": {
3
- "browser": true,
4
- "es6": true
5
- },
6
- "extends": [
7
- "eslint:recommended",
8
- "plugin:@typescript-eslint/eslint-recommended"
9
- ],
10
- "globals": {
11
- "Atomics": "readonly",
12
- "SharedArrayBuffer": "readonly"
13
- },
14
- "parser": "@typescript-eslint/parser",
15
- "parserOptions": {
16
- "ecmaVersion": 2018,
17
- "sourceType": "module"
18
- },
19
- "plugins": [
20
- "@typescript-eslint"
21
- ],
22
- "rules": {
23
- }
1
+ module.exports = {
2
+ "env": {
3
+ "browser": true,
4
+ "es6": true
5
+ },
6
+ "extends": [
7
+ "eslint:recommended",
8
+ "plugin:@typescript-eslint/eslint-recommended"
9
+ ],
10
+ "globals": {
11
+ "Atomics": "readonly",
12
+ "SharedArrayBuffer": "readonly"
13
+ },
14
+ "parser": "@typescript-eslint/parser",
15
+ "parserOptions": {
16
+ "ecmaVersion": 2018,
17
+ "sourceType": "module"
18
+ },
19
+ "plugins": [
20
+ "@typescript-eslint"
21
+ ],
22
+ "rules": {
23
+ }
24
24
  };