pimath 0.0.49 → 0.0.53

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 (127) hide show
  1. package/README.md +1 -1
  2. package/dist/pi.js +626 -358
  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/highlight.css +78 -78
  7. package/docs/assets/icons.css +1043 -1043
  8. package/docs/assets/main.js +52 -52
  9. package/docs/assets/search.js +1 -1
  10. package/docs/assets/style.css +1413 -1388
  11. package/docs/classes/Logicalset.Logicalset-1.html +5 -0
  12. package/docs/classes/Polynom.Rational.html +4 -0
  13. package/docs/classes/Vector.Point.html +1 -0
  14. package/docs/classes/Vector.Vector-1.html +1 -0
  15. package/docs/classes/algebra_equation.Equation.html +26 -0
  16. package/docs/classes/algebra_linearSystem.LinearSystem.html +1 -0
  17. package/docs/classes/algebra_monom.Monom.html +114 -0
  18. package/docs/classes/algebra_polynom.Polynom.html +30 -0
  19. package/docs/classes/coefficients_fraction.Fraction.html +19 -0
  20. package/docs/classes/coefficients_nthroot.NthRoot.html +3 -0
  21. package/docs/classes/expressions_numexp.NumExp.html +1 -0
  22. package/docs/classes/expressions_polynomexp.PolynomExpFactor.html +1 -0
  23. package/docs/classes/expressions_polynomexp.PolynomExpProduct.html +1 -0
  24. package/docs/classes/geometry_circle.Circle.html +3 -0
  25. package/docs/classes/geometry_line.Line.html +3 -0
  26. package/docs/classes/geometry_triangle.Triangle.html +17 -0
  27. package/docs/classes/numeric.Numeric.html +14 -14
  28. package/docs/classes/shutingyard.Shutingyard.html +18 -18
  29. package/docs/enums/algebra_equation.PARTICULAR_SOLUTION.html +1 -0
  30. package/docs/enums/geometry_line.LinePropriety.html +1 -0
  31. package/docs/enums/shutingyard.ShutingyardMode.html +1 -1
  32. package/docs/enums/shutingyard.ShutingyardType.html +1 -1
  33. package/docs/index.html +11 -11
  34. package/docs/interfaces/algebra_equation.ISolution.html +3 -0
  35. package/docs/interfaces/geometry_triangle.remarquableLines.html +1 -0
  36. package/docs/modules/Logicalset.html +3 -0
  37. package/docs/modules/Polynom.html +3 -0
  38. package/docs/modules/Vector.html +3 -0
  39. package/docs/modules/algebra_equation.html +1 -0
  40. package/docs/modules/algebra_linearSystem.html +1 -0
  41. package/docs/modules/algebra_monom.html +1 -0
  42. package/docs/modules/algebra_polynom.html +1 -0
  43. package/docs/modules/coefficients_fraction.html +1 -0
  44. package/docs/modules/coefficients_nthroot.html +1 -0
  45. package/docs/modules/expressions_numexp.html +1 -0
  46. package/docs/modules/expressions_polynomexp.html +1 -0
  47. package/docs/modules/geometry_circle.html +1 -0
  48. package/docs/modules/geometry_line.html +1 -0
  49. package/docs/modules/geometry_triangle.html +1 -0
  50. package/docs/modules/numeric.html +1 -1
  51. package/docs/modules/shutingyard.html +1 -1
  52. package/docs/modules.html +1 -1
  53. package/esm/index.d.ts +2 -2
  54. package/esm/index.js +2 -2
  55. package/esm/maths/algebra/equation.d.ts +7 -2
  56. package/esm/maths/algebra/equation.js +62 -19
  57. package/esm/maths/algebra/equation.js.map +10 -1
  58. package/esm/maths/algebra/linearSystem.js +1 -1
  59. package/esm/maths/algebra/linearSystem.js.map +10 -1
  60. package/esm/maths/algebra/monom.js +2 -2
  61. package/esm/maths/algebra/monom.js.map +10 -1
  62. package/esm/maths/algebra/polynom.d.ts +5 -1
  63. package/esm/maths/algebra/polynom.js +157 -81
  64. package/esm/maths/algebra/polynom.js.map +1 -1
  65. package/esm/maths/algebra/rational.d.ts +16 -6
  66. package/esm/maths/algebra/rational.js +139 -30
  67. package/esm/maths/algebra/rational.js.map +10 -1
  68. package/esm/maths/coefficients/fraction.d.ts +3 -1
  69. package/esm/maths/coefficients/fraction.js +37 -5
  70. package/esm/maths/coefficients/fraction.js.map +1 -1
  71. package/esm/maths/coefficients/{nthroot.d.ts → nthRoot.d.ts} +5 -5
  72. package/esm/maths/coefficients/{nthroot.js → nthRoot.js} +5 -5
  73. package/esm/maths/coefficients/{nthroot.js.map → nthRoot.js.map} +1 -1
  74. package/esm/maths/expressions/polynomexp.bkp.js +2 -3
  75. package/esm/maths/expressions/polynomexp.bkp.js.map +10 -1
  76. package/esm/maths/expressions/polynomexp.js +3 -3
  77. package/esm/maths/expressions/polynomexp.js.map +10 -1
  78. package/esm/maths/geometry/line.js +8 -0
  79. package/esm/maths/geometry/line.js.map +1 -1
  80. package/esm/maths/geometry/point.js +1 -1
  81. package/esm/maths/geometry/point.js.map +10 -1
  82. package/esm/maths/randomization/random.js +5 -1
  83. package/esm/maths/randomization/random.js.map +10 -1
  84. package/package.json +11 -11
  85. package/public/index.html +234 -235
  86. package/src/index.ts +2 -2
  87. package/src/maths/algebra/equation.ts +68 -19
  88. package/src/maths/algebra/linearSystem.ts +1 -1
  89. package/src/maths/algebra/monom.ts +3 -4
  90. package/src/maths/algebra/polynom.ts +170 -87
  91. package/src/maths/algebra/rational.ts +243 -98
  92. package/src/maths/coefficients/fraction.ts +44 -6
  93. package/src/maths/coefficients/{nthroot.ts → nthRoot.ts} +5 -5
  94. package/src/maths/expressions/polynomexp.bkp.ts +1 -2
  95. package/src/maths/expressions/polynomexp.ts +2 -1
  96. package/src/maths/geometry/line.ts +0 -1
  97. package/src/maths/geometry/point.ts +1 -1
  98. package/tests/algebra/equation.test.ts +36 -0
  99. package/tests/algebra/monom.test.ts +2 -5
  100. package/tests/algebra/polynom.test.ts +7 -3
  101. package/tests/algebra/rationnal.test.ts +96 -0
  102. package/tests/coefficients/fraction.test.ts +43 -1
  103. package/tests/geometry/circle.test.ts +4 -2
  104. package/tests/polynomexp.test.ts +0 -3
  105. package/tsconfig.json +16 -5
  106. package/docs/classes/Algebra.Equation.html +0 -26
  107. package/docs/classes/algebra.LinearSystem.html +0 -1
  108. package/docs/classes/algebra.Logicalset.html +0 -5
  109. package/docs/classes/algebra.Monom.html +0 -114
  110. package/docs/classes/algebra.Polynom.html +0 -30
  111. package/docs/classes/algebra.PolynomExpFactor.html +0 -1
  112. package/docs/classes/algebra.PolynomExpProduct.html +0 -1
  113. package/docs/classes/algebra.Rational.html +0 -4
  114. package/docs/classes/coefficients.Fraction.html +0 -19
  115. package/docs/classes/coefficients.Nthroot.html +0 -3
  116. package/docs/classes/geometry.Circle.html +0 -3
  117. package/docs/classes/geometry.Line.html +0 -3
  118. package/docs/classes/geometry.Point.html +0 -1
  119. package/docs/classes/geometry.Triangle.html +0 -17
  120. package/docs/classes/geometry.Vector.html +0 -1
  121. package/docs/enums/geometry.LinePropriety.html +0 -1
  122. package/docs/interfaces/geometry.remarquableLines.html +0 -1
  123. package/docs/modules/Algebra.html +0 -1
  124. package/docs/modules/Random.html +0 -1
  125. package/docs/modules/coefficients.html +0 -1
  126. package/docs/modules/geometry.html +0 -1
  127. package/docs/modules/random.Random.html +0 -1
@@ -1,18 +1,18 @@
1
- <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Shutingyard | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.Shutingyard.html">Shutingyard</a></li></ul><h1>Class Shutingyard</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">Shutingyard</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#_mode" class="tsd-kind-icon">_mode</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_rpn" class="tsd-kind-icon">_rpn</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConfig" class="tsd-kind-icon">_token<wbr/>Config</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConstant" class="tsd-kind-icon">_token<wbr/>Constant</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenKeys" class="tsd-kind-icon">_token<wbr/>Keys</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_uniformize" class="tsd-kind-icon">_uniformize</a></li></ul></section><section class="tsd-index-section "><h3>Accessors</h3><ul class="tsd-index-list"><li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#rpn" class="tsd-kind-icon">rpn</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#NextToken" class="tsd-kind-icon">Next<wbr/>Token</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#Uniformizer" class="tsd-kind-icon">Uniformizer</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#parse" class="tsd-kind-icon">parse</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#tokenConfigInitialization" class="tsd-kind-icon">token<wbr/>Config<wbr/>Initialization</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3>constructor</h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Shutingyard<span class="tsd-signature-symbol">(</span>mode<span class="tsd-signature-symbol">?: </span><a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L42">shutingyard.ts:42</a></li></ul></aside><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> mode: <a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a></h5></li></ul><h4 class="tsd-returns-title">Returns <a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="_mode" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagReadonly">Readonly</span> _mode</h3><div class="tsd-signature tsd-kind-icon">_mode<span class="tsd-signature-symbol">:</span> <a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L36">shutingyard.ts:36</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_rpn" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagPrivate">Private</span> _rpn</h3><div class="tsd-signature tsd-kind-icon">_rpn<span class="tsd-signature-symbol">:</span> <a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L35">shutingyard.ts:35</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenConfig" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Config</h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Config<span class="tsd-signature-symbol">:</span> <a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L37">shutingyard.ts:37</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenConstant" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Constant</h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Constant<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L38">shutingyard.ts:38</a></li></ul></aside><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-index-signature"><h5><span class="tsd-signature-symbol">[</span>Key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-type">number</span></h5></li></ul></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenKeys" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Keys</h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Keys<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L40">shutingyard.ts:40</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_uniformize" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagPrivate">Private</span> _uniformize</h3><div class="tsd-signature tsd-kind-icon">_uniformize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L39">shutingyard.ts:39</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group "><h2>Accessors</h2><section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class"><a id="rpn" class="tsd-anchor"></a><h3>rpn</h3><ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> rpn<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L353">shutingyard.ts:353</a></li></ul></aside><h4 class="tsd-returns-title">Returns <a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="NextToken" class="tsd-anchor"></a><h3>Next<wbr/>Token</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">Next<wbr/>Token<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, start<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L111">shutingyard.ts:111</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
2
- <p>Get the next token to analyse.</p>
3
- </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
4
- <p>(string) Expression to analyse</p>
5
- </div></div></li><li><h5>start: <span class="tsd-signature-type">number</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
6
- <p>(number) CUrrent position in the expr string.</p>
7
- </div></div></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="Uniformizer" class="tsd-anchor"></a><h3>Uniformizer</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">Uniformizer<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L181">shutingyard.ts:181</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
8
- <p>Sanitize an expression by adding missing common operation (multiplication between parentheseses)</p>
9
- </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="parse" class="tsd-anchor"></a><h3>parse</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">parse<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, operators<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L222">shutingyard.ts:222</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
10
- <p>Parse an expression using the shutting yard tree algorithms</p>
11
- </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
12
- <p>(string) Expression to analyse
13
- Returns a RPN list of items.</p>
14
- </div></div></li><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> operators: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
15
- </div></div></li></ul><h4 class="tsd-returns-title">Returns <a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="tokenConfigInitialization" class="tsd-anchor"></a><h3>token<wbr/>Config<wbr/>Initialization</h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">token<wbr/>Config<wbr/>Initialization<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L64">shutingyard.ts:64</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
16
- <p>Determin if the token is a defined operation
17
- Defined operations: + - * / ^ sin cos tan</p>
18
- </div></div><h4 class="tsd-returns-title">Returns <a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/algebra.html">algebra</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients.html">coefficients</a></li><li class=" tsd-kind-module"><a href="../modules/geometry.html">geometry</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/random.html">random</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="shutingyard.Shutingyard.html" class="tsd-kind-icon">Shutingyard</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#_mode" class="tsd-kind-icon">_mode</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_rpn" class="tsd-kind-icon">_rpn</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConfig" class="tsd-kind-icon">_token<wbr/>Config</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConstant" class="tsd-kind-icon">_token<wbr/>Constant</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenKeys" class="tsd-kind-icon">_token<wbr/>Keys</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_uniformize" class="tsd-kind-icon">_uniformize</a></li><li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#rpn" class="tsd-kind-icon">rpn</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#NextToken" class="tsd-kind-icon">Next<wbr/>Token</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#Uniformizer" class="tsd-kind-icon">Uniformizer</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#parse" class="tsd-kind-icon">parse</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#tokenConfigInitialization" class="tsd-kind-icon">token<wbr/>Config<wbr/>Initialization</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li><li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li><li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Shutingyard | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.Shutingyard.html">Shutingyard</a></li></ul><h1>Class Shutingyard</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">Shutingyard</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#_mode" class="tsd-kind-icon">_mode</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_rpn" class="tsd-kind-icon">_rpn</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConfig" class="tsd-kind-icon">_token<wbr/>Config</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConstant" class="tsd-kind-icon">_token<wbr/>Constant</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenKeys" class="tsd-kind-icon">_token<wbr/>Keys</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_uniformize" class="tsd-kind-icon">_uniformize</a></li></ul></section><section class="tsd-index-section "><h3>Accessors</h3><ul class="tsd-index-list"><li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#rpn" class="tsd-kind-icon">rpn</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#NextToken" class="tsd-kind-icon">Next<wbr/>Token</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#Uniformizer" class="tsd-kind-icon">Uniformizer</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#parse" class="tsd-kind-icon">parse</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#tokenConfigInitialization" class="tsd-kind-icon">token<wbr/>Config<wbr/>Initialization</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link">constructor<a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Shutingyard<span class="tsd-signature-symbol">(</span>mode<span class="tsd-signature-symbol">?: </span><a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L38">shutingyard.ts:38</a></li></ul></aside><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> mode: <a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a></h5></li></ul><h4 class="tsd-returns-title">Returns <a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class"><a id="_mode" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagReadonly">Readonly</span> _mode<a href="#_mode" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_mode<span class="tsd-signature-symbol">:</span> <a href="../enums/shutingyard.ShutingyardMode.html" class="tsd-signature-type" data-tsd-kind="Enumeration">ShutingyardMode</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L32">shutingyard.ts:32</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_rpn" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagPrivate">Private</span> _rpn<a href="#_rpn" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_rpn<span class="tsd-signature-symbol">:</span> <a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L43">shutingyard.ts:43</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenConfig" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Config<a href="#_tokenConfig" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Config<span class="tsd-signature-symbol">:</span> <a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L33">shutingyard.ts:33</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenConstant" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Constant<a href="#_tokenConstant" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Constant<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L34">shutingyard.ts:34</a></li></ul></aside><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-index-signature"><h5><span class="tsd-signature-symbol">[</span>Key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-type">number</span></h5></li></ul></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_tokenKeys" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagPrivate">Private</span> _token<wbr/>Keys<a href="#_tokenKeys" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_token<wbr/>Keys<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L35">shutingyard.ts:35</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"><a id="_uniformize" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagPrivate">Private</span> _uniformize<a href="#_uniformize" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">_uniformize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L36">shutingyard.ts:36</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group "><h2>Accessors</h2><section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class"><a id="rpn" class="tsd-anchor"></a><h3 class="tsd-anchor-link">rpn<a href="#rpn" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> rpn<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L46">shutingyard.ts:46</a></li></ul></aside><h4 class="tsd-returns-title">Returns <a href="../modules/shutingyard.html#Token" class="tsd-signature-type" data-tsd-kind="Type alias">Token</a><span class="tsd-signature-symbol">[]</span></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="NextToken" class="tsd-anchor"></a><h3 class="tsd-anchor-link">Next<wbr/>Token<a href="#NextToken" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">Next<wbr/>Token<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, start<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L115">shutingyard.ts:115</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
2
+ <p>Get the next token to analyse.</p>
3
+ </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
4
+ <p>(string) Expression to analyse</p>
5
+ </div></div></li><li><h5>start: <span class="tsd-signature-type">number</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
6
+ <p>(number) CUrrent position in the expr string.</p>
7
+ </div></div></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="Uniformizer" class="tsd-anchor"></a><h3 class="tsd-anchor-link">Uniformizer<a href="#Uniformizer" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">Uniformizer<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L185">shutingyard.ts:185</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
8
+ <p>Sanitize an expression by adding missing common operation (multiplication between parentheseses)</p>
9
+ </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="parse" class="tsd-anchor"></a><h3 class="tsd-anchor-link">parse<a href="#parse" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">parse<span class="tsd-signature-symbol">(</span>expr<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, operators<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L228">shutingyard.ts:228</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
10
+ <p>Parse an expression using the shutting yard tree algorithms</p>
11
+ </div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>expr: <span class="tsd-signature-type">string</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
12
+ <p>(string) Expression to analyse
13
+ Returns a RPN list of items.</p>
14
+ </div></div></li><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> operators: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
15
+ </div></div></li></ul><h4 class="tsd-returns-title">Returns <a href="shutingyard.Shutingyard.html" class="tsd-signature-type" data-tsd-kind="Class">Shutingyard</a></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="tokenConfigInitialization" class="tsd-anchor"></a><h3 class="tsd-anchor-link">token<wbr/>Config<wbr/>Initialization<a href="#tokenConfigInitialization" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">token<wbr/>Config<wbr/>Initialization<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L68">shutingyard.ts:68</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
16
+ <p>Determin if the token is a defined operation
17
+ Defined operations: + - * / ^ sin cos tan</p>
18
+ </div></div><h4 class="tsd-returns-title">Returns <a href="../modules/shutingyard.html#tokenType-1" class="tsd-signature-type" data-tsd-kind="Type alias">tokenType</a></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="shutingyard.Shutingyard.html" class="tsd-kind-icon">Shutingyard</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-property tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#_mode" class="tsd-kind-icon">_mode</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_rpn" class="tsd-kind-icon">_rpn</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConfig" class="tsd-kind-icon">_token<wbr/>Config</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenConstant" class="tsd-kind-icon">_token<wbr/>Constant</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_tokenKeys" class="tsd-kind-icon">_token<wbr/>Keys</a></li><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="shutingyard.Shutingyard.html#_uniformize" class="tsd-kind-icon">_uniformize</a></li><li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#rpn" class="tsd-kind-icon">rpn</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#NextToken" class="tsd-kind-icon">Next<wbr/>Token</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#Uniformizer" class="tsd-kind-icon">Uniformizer</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#parse" class="tsd-kind-icon">parse</a></li><li class="tsd-kind-method tsd-parent-kind-class"><a href="shutingyard.Shutingyard.html#tokenConfigInitialization" class="tsd-kind-icon">token<wbr/>Config<wbr/>Initialization</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li><li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li><li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>PARTICULAR_SOLUTION | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/algebra_equation.html">algebra/equation</a></li><li><a href="algebra_equation.PARTICULAR_SOLUTION.html">PARTICULAR_SOLUTION</a></li></ul><h1>Enumeration PARTICULAR_SOLUTION</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="algebra_equation.PARTICULAR_SOLUTION.html#real" class="tsd-kind-icon">real</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="algebra_equation.PARTICULAR_SOLUTION.html#varnothing" class="tsd-kind-icon">varnothing</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="real" class="tsd-anchor"></a><h3 class="tsd-anchor-link">real<a href="#real" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">real<span class="tsd-signature-symbol"> = &quot;\\mathbb{R}&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/algebra/equation.ts#L17">algebra/equation.ts:17</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="varnothing" class="tsd-anchor"></a><h3 class="tsd-anchor-link">varnothing<a href="#varnothing" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">varnothing<span class="tsd-signature-symbol"> = &quot;\\varnothing&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/algebra/equation.ts#L18">algebra/equation.ts:18</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class="current tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="algebra_equation.PARTICULAR_SOLUTION.html" class="tsd-kind-icon">PARTICULAR_<wbr/>SOLUTION</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="algebra_equation.PARTICULAR_SOLUTION.html#real" class="tsd-kind-icon">real</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="algebra_equation.PARTICULAR_SOLUTION.html#varnothing" class="tsd-kind-icon">varnothing</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>LinePropriety | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/geometry_line.html">geometry/line</a></li><li><a href="geometry_line.LinePropriety.html">LinePropriety</a></li></ul><h1>Enumeration LinePropriety</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#None" class="tsd-kind-icon">None</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Parallel" class="tsd-kind-icon">Parallel</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Perpendicular" class="tsd-kind-icon">Perpendicular</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Tangent" class="tsd-kind-icon">Tangent</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="None" class="tsd-anchor"></a><h3 class="tsd-anchor-link">None<a href="#None" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">None<span class="tsd-signature-symbol"> = 0</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/geometry/line.ts#L13">geometry/line.ts:13</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="Parallel" class="tsd-anchor"></a><h3 class="tsd-anchor-link">Parallel<a href="#Parallel" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">Parallel<span class="tsd-signature-symbol"> = &quot;parallel&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/geometry/line.ts#L14">geometry/line.ts:14</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="Perpendicular" class="tsd-anchor"></a><h3 class="tsd-anchor-link">Perpendicular<a href="#Perpendicular" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">Perpendicular<span class="tsd-signature-symbol"> = &quot;perpendicular&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/geometry/line.ts#L15">geometry/line.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="Tangent" class="tsd-anchor"></a><h3 class="tsd-anchor-link">Tangent<a href="#Tangent" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">Tangent<span class="tsd-signature-symbol"> = &quot;tangent&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/geometry/line.ts#L16">geometry/line.ts:16</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class="current tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="geometry_line.LinePropriety.html" class="tsd-kind-icon">Line<wbr/>Propriety</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#None" class="tsd-kind-icon">None</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Parallel" class="tsd-kind-icon">Parallel</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Perpendicular" class="tsd-kind-icon">Perpendicular</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="geometry_line.LinePropriety.html#Tangent" class="tsd-kind-icon">Tangent</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -1 +1 @@
1
- <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ShutingyardMode | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.ShutingyardMode.html">ShutingyardMode</a></li></ul><h1>Enumeration ShutingyardMode</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#NUMERIC" class="tsd-kind-icon">NUMERIC</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#POLYNOM" class="tsd-kind-icon">POLYNOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#SET" class="tsd-kind-icon">SET</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="NUMERIC" class="tsd-anchor"></a><h3>NUMERIC</h3><div class="tsd-signature tsd-kind-icon">NUMERIC<span class="tsd-signature-symbol"> = &quot;numeric&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L29">shutingyard.ts:29</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="POLYNOM" class="tsd-anchor"></a><h3>POLYNOM</h3><div class="tsd-signature tsd-kind-icon">POLYNOM<span class="tsd-signature-symbol"> = &quot;polynom&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L27">shutingyard.ts:27</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="SET" class="tsd-anchor"></a><h3>SET</h3><div class="tsd-signature tsd-kind-icon">SET<span class="tsd-signature-symbol"> = &quot;set&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L28">shutingyard.ts:28</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/algebra.html">algebra</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients.html">coefficients</a></li><li class=" tsd-kind-module"><a href="../modules/geometry.html">geometry</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/random.html">random</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="shutingyard.ShutingyardMode.html" class="tsd-kind-icon">Shutingyard<wbr/>Mode</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#NUMERIC" class="tsd-kind-icon">NUMERIC</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#POLYNOM" class="tsd-kind-icon">POLYNOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#SET" class="tsd-kind-icon">SET</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ShutingyardMode | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.ShutingyardMode.html">ShutingyardMode</a></li></ul><h1>Enumeration ShutingyardMode</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#NUMERIC" class="tsd-kind-icon">NUMERIC</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#POLYNOM" class="tsd-kind-icon">POLYNOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#SET" class="tsd-kind-icon">SET</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="NUMERIC" class="tsd-anchor"></a><h3 class="tsd-anchor-link">NUMERIC<a href="#NUMERIC" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">NUMERIC<span class="tsd-signature-symbol"> = &quot;numeric&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L26">shutingyard.ts:26</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="POLYNOM" class="tsd-anchor"></a><h3 class="tsd-anchor-link">POLYNOM<a href="#POLYNOM" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">POLYNOM<span class="tsd-signature-symbol"> = &quot;polynom&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L24">shutingyard.ts:24</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="SET" class="tsd-anchor"></a><h3 class="tsd-anchor-link">SET<a href="#SET" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">SET<span class="tsd-signature-symbol"> = &quot;set&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L25">shutingyard.ts:25</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="shutingyard.ShutingyardMode.html" class="tsd-kind-icon">Shutingyard<wbr/>Mode</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#NUMERIC" class="tsd-kind-icon">NUMERIC</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#POLYNOM" class="tsd-kind-icon">POLYNOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardMode.html#SET" class="tsd-kind-icon">SET</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -1 +1 @@
1
- <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ShutingyardType | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.ShutingyardType.html">ShutingyardType</a></li></ul><h1>Enumeration ShutingyardType</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#COEFFICIENT" class="tsd-kind-icon">COEFFICIENT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#CONSTANT" class="tsd-kind-icon">CONSTANT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#FUNCTION" class="tsd-kind-icon">FUNCTION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#MONOM" class="tsd-kind-icon">MONOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#OPERATION" class="tsd-kind-icon">OPERATION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#VARIABLE" class="tsd-kind-icon">VARIABLE</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="COEFFICIENT" class="tsd-anchor"></a><h3>COEFFICIENT</h3><div class="tsd-signature tsd-kind-icon">COEFFICIENT<span class="tsd-signature-symbol"> = &quot;coefficient&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L19">shutingyard.ts:19</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="CONSTANT" class="tsd-anchor"></a><h3>CONSTANT</h3><div class="tsd-signature tsd-kind-icon">CONSTANT<span class="tsd-signature-symbol"> = &quot;constant&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L21">shutingyard.ts:21</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="FUNCTION" class="tsd-anchor"></a><h3>FUNCTION</h3><div class="tsd-signature tsd-kind-icon">FUNCTION<span class="tsd-signature-symbol"> = &quot;function&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L22">shutingyard.ts:22</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="MONOM" class="tsd-anchor"></a><h3>MONOM</h3><div class="tsd-signature tsd-kind-icon">MONOM<span class="tsd-signature-symbol"> = &quot;monom&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L23">shutingyard.ts:23</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="OPERATION" class="tsd-anchor"></a><h3>OPERATION</h3><div class="tsd-signature tsd-kind-icon">OPERATION<span class="tsd-signature-symbol"> = &quot;operation&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L20">shutingyard.ts:20</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="VARIABLE" class="tsd-anchor"></a><h3>VARIABLE</h3><div class="tsd-signature tsd-kind-icon">VARIABLE<span class="tsd-signature-symbol"> = &quot;variable&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PI/blob/623f193/src/maths/shutingyard.ts#L18">shutingyard.ts:18</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/algebra.html">algebra</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients.html">coefficients</a></li><li class=" tsd-kind-module"><a href="../modules/geometry.html">geometry</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/random.html">random</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="shutingyard.ShutingyardType.html" class="tsd-kind-icon">Shutingyard<wbr/>Type</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#COEFFICIENT" class="tsd-kind-icon">COEFFICIENT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#CONSTANT" class="tsd-kind-icon">CONSTANT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#FUNCTION" class="tsd-kind-icon">FUNCTION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#MONOM" class="tsd-kind-icon">MONOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#OPERATION" class="tsd-kind-icon">OPERATION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#VARIABLE" class="tsd-kind-icon">VARIABLE</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ShutingyardType | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/shutingyard.html">shutingyard</a></li><li><a href="shutingyard.ShutingyardType.html">ShutingyardType</a></li></ul><h1>Enumeration ShutingyardType</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Enumeration members</h3><ul class="tsd-index-list"><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#COEFFICIENT" class="tsd-kind-icon">COEFFICIENT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#CONSTANT" class="tsd-kind-icon">CONSTANT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#FUNCTION" class="tsd-kind-icon">FUNCTION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#MONOM" class="tsd-kind-icon">MONOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#OPERATION" class="tsd-kind-icon">OPERATION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#VARIABLE" class="tsd-kind-icon">VARIABLE</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Enumeration members</h2><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="COEFFICIENT" class="tsd-anchor"></a><h3 class="tsd-anchor-link">COEFFICIENT<a href="#COEFFICIENT" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">COEFFICIENT<span class="tsd-signature-symbol"> = &quot;coefficient&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L16">shutingyard.ts:16</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="CONSTANT" class="tsd-anchor"></a><h3 class="tsd-anchor-link">CONSTANT<a href="#CONSTANT" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">CONSTANT<span class="tsd-signature-symbol"> = &quot;constant&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L18">shutingyard.ts:18</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="FUNCTION" class="tsd-anchor"></a><h3 class="tsd-anchor-link">FUNCTION<a href="#FUNCTION" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">FUNCTION<span class="tsd-signature-symbol"> = &quot;function&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L19">shutingyard.ts:19</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="MONOM" class="tsd-anchor"></a><h3 class="tsd-anchor-link">MONOM<a href="#MONOM" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">MONOM<span class="tsd-signature-symbol"> = &quot;monom&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L20">shutingyard.ts:20</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="OPERATION" class="tsd-anchor"></a><h3 class="tsd-anchor-link">OPERATION<a href="#OPERATION" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">OPERATION<span class="tsd-signature-symbol"> = &quot;operation&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L17">shutingyard.ts:17</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="VARIABLE" class="tsd-anchor"></a><h3 class="tsd-anchor-link">VARIABLE<a href="#VARIABLE" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">VARIABLE<span class="tsd-signature-symbol"> = &quot;variable&quot;</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/shutingyard.ts#L15">shutingyard.ts:15</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class="current tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-enum tsd-parent-kind-module"><a href="shutingyard.ShutingyardType.html" class="tsd-kind-icon">Shutingyard<wbr/>Type</a><ul><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#COEFFICIENT" class="tsd-kind-icon">COEFFICIENT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#CONSTANT" class="tsd-kind-icon">CONSTANT</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#FUNCTION" class="tsd-kind-icon">FUNCTION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#MONOM" class="tsd-kind-icon">MONOM</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#OPERATION" class="tsd-kind-icon">OPERATION</a></li><li class="tsd-kind-enum-member tsd-parent-kind-enum"><a href="shutingyard.ShutingyardType.html#VARIABLE" class="tsd-kind-icon">VARIABLE</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
package/docs/index.html CHANGED
@@ -1,11 +1,11 @@
1
- <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base="."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><h1> pimath</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><div class="tsd-panel tsd-typography">
2
- <a href="#pi---javascript-math-in-your-hands" id="pi---javascript-math-in-your-hands" style="color: inherit; text-decoration: none;">
3
- <h1>PI - javascript math in your hands </h1>
4
- </a>
5
- <p>PI is a script designed to create and generate mathematical exercises.
6
- Each class has a tex output, designed to be used in any LaTeX document.</p>
7
- <p>Fraction will create... fraction !</p>
8
- <pre><code><span class="hl-0">let</span><span class="hl-1"> </span><span class="hl-2">A</span><span class="hl-1"> = </span><span class="hl-0">new</span><span class="hl-1"> </span><span class="hl-3">Pi</span><span class="hl-1">.</span><span class="hl-4">Fraction</span><span class="hl-1">(</span><span class="hl-5">&#39;2/3&#39;</span><span class="hl-1">);</span><br/><span class="hl-3">console</span><span class="hl-1">.</span><span class="hl-4">log</span><span class="hl-1">(</span><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-3">frac</span><span class="hl-1">) </span><span class="hl-6">// -&gt; \frac{ 2 }{ 3 }</span><br/><br/><span class="hl-6">// Add another fraction</span><br/><span class="hl-0">let</span><span class="hl-1"> </span><span class="hl-2">B</span><span class="hl-1"> = </span><span class="hl-0">new</span><span class="hl-1"> </span><span class="hl-3">Pi</span><span class="hl-1">.</span><span class="hl-4">Fraction</span><span class="hl-1">(</span><span class="hl-5">&#39;2/5&#39;</span><span class="hl-1">);</span><br/><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-4">add</span><span class="hl-1">(</span><span class="hl-2">B</span><span class="hl-1">);</span><br/><span class="hl-3">console</span><span class="hl-1">.</span><span class="hl-4">log</span><span class="hl-1">(</span><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-3">frac</span><span class="hl-1">) </span><span class="hl-6">// -&gt; \frac{ 16 }{ 15 }</span>
9
- </code></pre>
10
- <p>New version</p>
11
- </div></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class="current"><a href="modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="modules/algebra.html">algebra</a></li><li class=" tsd-kind-module"><a href="modules/coefficients.html">coefficients</a></li><li class=" tsd-kind-module"><a href="modules/geometry.html">geometry</a></li><li class=" tsd-kind-module"><a href="modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="modules/random.html">random</a></li><li class=" tsd-kind-module"><a href="modules/shutingyard.html">shutingyard</a></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-namespace"><span class="tsd-kind-icon">Namespace</span></li><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="assets/main.js"></script></body></html>
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script async src="assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base="."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><h1> pimath</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><div class="tsd-panel tsd-typography">
2
+ <a href="#pi---javascript-math-in-your-hands" id="pi---javascript-math-in-your-hands" style="color: inherit; text-decoration: none;">
3
+ <h1>PI - javascript math in your hands </h1>
4
+ </a>
5
+ <p>PI is a script designed to create and generate mathematical exercises.
6
+ Each class has a tex output, designed to be used in any LaTeX document.</p>
7
+ <p>Fraction will create... fraction !</p>
8
+ <pre><code><span class="hl-0">let</span><span class="hl-1"> </span><span class="hl-2">A</span><span class="hl-1"> = </span><span class="hl-0">new</span><span class="hl-1"> </span><span class="hl-3">Pi</span><span class="hl-1">.</span><span class="hl-4">Fraction</span><span class="hl-1">(</span><span class="hl-5">&#39;2/3&#39;</span><span class="hl-1">);</span><br/><span class="hl-3">console</span><span class="hl-1">.</span><span class="hl-4">log</span><span class="hl-1">(</span><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-3">frac</span><span class="hl-1">) </span><span class="hl-6">// -&gt; \frac{ 2 }{ 3 }</span><br/><br/><span class="hl-6">// Add another fraction</span><br/><span class="hl-0">let</span><span class="hl-1"> </span><span class="hl-2">B</span><span class="hl-1"> = </span><span class="hl-0">new</span><span class="hl-1"> </span><span class="hl-3">Pi</span><span class="hl-1">.</span><span class="hl-4">Fraction</span><span class="hl-1">(</span><span class="hl-5">&#39;2/5&#39;</span><span class="hl-1">);</span><br/><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-4">add</span><span class="hl-1">(</span><span class="hl-2">B</span><span class="hl-1">);</span><br/><span class="hl-3">console</span><span class="hl-1">.</span><span class="hl-4">log</span><span class="hl-1">(</span><span class="hl-2">A</span><span class="hl-1">.</span><span class="hl-3">frac</span><span class="hl-1">) </span><span class="hl-6">// -&gt; \frac{ 16 }{ 15 }</span>
9
+ </code></pre>
10
+ <p>New version</p>
11
+ </div></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class="current"><a href="modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="modules/shutingyard.html">shutingyard</a></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="assets/main.js"></script></body></html>
@@ -0,0 +1,3 @@
1
+ <!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ISolution | pimath</title><meta name="description" content="Documentation for pimath"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css" integrity="sha384-R4558gYOUz8mP9YWpZJjofhk+zx0AS11p36HnD2ZKj/6JR5z27gSSULCNHIRReVs" crossorigin="anonymous"><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js" integrity="sha384-z1fJDqw8ZApjGO3/unPWUPsIymfsJmyrDVWC8Tv/a1HeOtGmkwNd/7xUS0Xcnvsx" crossorigin="anonymous"></script><script defer src="https://cdn.jsdelivr.net/npm/katex@0.15.1/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script></link>}); }</head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">pimath</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">pimath</a></li><li><a href="../modules/algebra_equation.html">algebra/equation</a></li><li><a href="algebra_equation.ISolution.html">ISolution</a></li></ul><h1>Interface ISolution</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><div class="lead">
2
+ <p>Equation is a class to manage equations...</p>
3
+ </div></div></section><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ISolution</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#exact" class="tsd-kind-icon">exact</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#tex" class="tsd-kind-icon">tex</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#value" class="tsd-kind-icon">value</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="exact" class="tsd-anchor"></a><h3 class="tsd-anchor-link">exact<a href="#exact" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">exact<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">unknown</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/algebra/equation.ts#L13">algebra/equation.ts:13</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="tex" class="tsd-anchor"></a><h3 class="tsd-anchor-link">tex<a href="#tex" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">tex<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/algebra/equation.ts#L11">algebra/equation.ts:11</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="value" class="tsd-anchor"></a><h3 class="tsd-anchor-link">value<a href="#value" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><div class="tsd-signature tsd-kind-icon">value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/basilgass/PiMath/blob/a3b6fdb/src/maths/algebra/equation.ts#L12">algebra/equation.ts:12</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/Logicalset.html">Logicalset</a></li><li class=" tsd-kind-module"><a href="../modules/Polynom.html">Polynom</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class=" tsd-kind-module"><a href="../modules/Vector.html">Vector</a></li><li class="current tsd-kind-module"><a href="../modules/algebra_equation.html">algebra/equation</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_linearSystem.html">algebra/linear<wbr/>System</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_monom.html">algebra/monom</a></li><li class=" tsd-kind-module"><a href="../modules/algebra_polynom.html">algebra/polynom</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_fraction.html">coefficients/fraction</a></li><li class=" tsd-kind-module"><a href="../modules/coefficients_nthroot.html">coefficients/nthroot</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_numexp.html">expressions/numexp</a></li><li class=" tsd-kind-module"><a href="../modules/expressions_polynomexp.html">expressions/polynomexp</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_circle.html">geometry/circle</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_line.html">geometry/line</a></li><li class=" tsd-kind-module"><a href="../modules/geometry_triangle.html">geometry/triangle</a></li><li class=" tsd-kind-module"><a href="../modules/numeric.html">numeric</a></li><li class=" tsd-kind-module"><a href="../modules/shutingyard.html">shutingyard</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-module"><a href="algebra_equation.ISolution.html" class="tsd-kind-icon">ISolution</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#exact" class="tsd-kind-icon">exact</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#tex" class="tsd-kind-icon">tex</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="algebra_equation.ISolution.html#value" class="tsd-kind-icon">value</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li><li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>