Skip to content

Commit 56ef5b8

Browse files
v.5.0.3
1 parent 29f4215 commit 56ef5b8

File tree

143 files changed

+3722
-837
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+3722
-837
lines changed

CURRENT/c-sharp/src/org/mariuszgromada/math/mxparser/Argument.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ public double getArgumentValue() {
675675
return getArgumentValue(null);
676676
}
677677
/**
678-
* Gets argument value.
678+
* Gets argument value and registers all the calculation steps
679679
*
680680
* @param calcStepsRegister A collection to store list of calculation steps,
681681
* steps registered as strings.

CURRENT/c-sharp/src/org/mariuszgromada/math/mxparser/CalcStepsRegister.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ namespace org.mariuszgromada.math.mxparser {
191191
[CLSCompliant(true)]
192192
public class CalcStepsRegister {
193193
/**
194-
* List that store all the calculation steps
194+
* List that stores all the calculation steps
195195
*/
196196
public List<CalcStepRecord> calcStepRecords = new List<CalcStepRecord>();
197197
/**

CURRENT/c-sharp/src/org/mariuszgromada/math/mxparser/Expression.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5656,7 +5656,7 @@ private String tokensListToString() {
56565656
return result;
56575657
}
56585658
/**
5659-
* Calculates the expression value
5659+
* Calculates the expression value and registers all the calculation steps
56605660
*
56615661
* @param calcStepsRegister A collection to store list of calculation steps,
56625662
* steps registered as strings.

CURRENT/c-sharp/src/org/mariuszgromada/math/mxparser/Function.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ public double calculate() {
630630
return calculate((CalcStepsRegister) null);
631631
}
632632
/**
633-
* Calculates function value
633+
* Calculates function value and registers all the calculation steps
634634
*
635635
* @param calcStepsRegister A collection to store list of calculation steps,
636636
* steps registered as strings.

CURRENT/doc/allclasses-frame.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ <h1 class="bar">All&nbsp;Classes</h1>
6464
</ul>
6565
</div>
6666
</body>
67-
</html>
67+
</html>

CURRENT/doc/allclasses-index.html

+64-42
Large diffs are not rendered by default.

CURRENT/doc/allclasses-noframe.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ <h1 class="bar">All&nbsp;Classes</h1>
6464
</ul>
6565
</div>
6666
</body>
67-
</html>
67+
</html>

CURRENT/doc/allclasses.html

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="pl">
44
<head>
5-
<!-- Generated by javadoc (11.0.14.1) on Mon Apr 18 02:25:58 CEST 2022 -->
6-
<title>All Classes (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
5+
<!-- Generated by javadoc (11.0.15) on Sat May 21 12:36:51 CEST 2022 -->
6+
<title>All Classes (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2022-04-18">
8+
<meta name="dc.created" content="2022-05-21">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
1111
<script type="text/javascript" src="script.js"></script>
@@ -30,6 +30,9 @@ <h1 class="bar">All&nbsp;Classes</h1>
3030
<li><a href="org/mariuszgromada/math/mxparser/parsertokens/BitwiseOperator.html" title="class in org.mariuszgromada.math.mxparser.parsertokens">BitwiseOperator</a></li>
3131
<li><a href="org/mariuszgromada/math/mxparser/mathcollection/BooleanAlgebra.html" title="class in org.mariuszgromada.math.mxparser.mathcollection">BooleanAlgebra</a></li>
3232
<li><a href="org/mariuszgromada/math/mxparser/parsertokens/BooleanOperator.html" title="class in org.mariuszgromada.math.mxparser.parsertokens">BooleanOperator</a></li>
33+
<li><a href="org/mariuszgromada/math/mxparser/CalcStepRecord.html" title="class in org.mariuszgromada.math.mxparser">CalcStepRecord</a></li>
34+
<li><a href="org/mariuszgromada/math/mxparser/CalcStepRecord.StepType.html" title="enum in org.mariuszgromada.math.mxparser">CalcStepRecord.StepType</a></li>
35+
<li><a href="org/mariuszgromada/math/mxparser/CalcStepsRegister.html" title="class in org.mariuszgromada.math.mxparser">CalcStepsRegister</a></li>
3336
<li><a href="org/mariuszgromada/math/mxparser/mathcollection/Calculus.html" title="class in org.mariuszgromada.math.mxparser.mathcollection">Calculus</a></li>
3437
<li><a href="org/mariuszgromada/math/mxparser/parsertokens/CalculusOperator.html" title="class in org.mariuszgromada.math.mxparser.parsertokens">CalculusOperator</a></li>
3538
<li><a href="org/mariuszgromada/math/mxparser/Constant.html" title="class in org.mariuszgromada.math.mxparser">Constant</a></li>
@@ -67,4 +70,4 @@ <h1 class="bar">All&nbsp;Classes</h1>
6770
</ul>
6871
</main>
6972
</body>
70-
</html>
73+
</html>

CURRENT/doc/allpackages-index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="pl">
44
<head>
5-
<!-- Generated by javadoc (11.0.14.1) on Mon Apr 18 02:25:58 CEST 2022 -->
6-
<title>All Packages (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
5+
<!-- Generated by javadoc (11.0.15) on Sat May 21 12:36:51 CEST 2022 -->
6+
<title>All Packages (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2022-04-18">
8+
<meta name="dc.created" content="2022-05-21">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
1111
<script type="text/javascript" src="script.js"></script>
@@ -22,7 +22,7 @@
2222
<script type="text/javascript"><!--
2323
try {
2424
if (location.href.indexOf('is-external=true') == -1) {
25-
parent.document.title="All Packages (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API)";
25+
parent.document.title="All Packages (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API)";
2626
}
2727
}
2828
catch(err) {
@@ -96,7 +96,7 @@
9696
<main role="main">
9797
<div class="header">
9898
<h1 title="All&amp;nbsp;Packages" class="title">All&nbsp;Packages</h1>
99-
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="http://mathparser.org/wp-content/uploads/2022/04/infima-logo.jpg" alt="INFIMA online store"/></a><br>
99+
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="https://mathparser.org/wp-content/uploads/2022/04/INFIMA-logo-small.png" alt="INFIMA online store"/></a><br>
100100
</div>
101101
<div class="allPackagesContainer">
102102
<ul class="blockList">
@@ -174,4 +174,4 @@ <h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi
174174
<p class="legalCopy"><small>Copyright &#169; 2022 <a href="https://mathparser.org/">MathParser.org</a>. All rights reserved.</small></p>
175175
</footer>
176176
</body>
177-
</html>
177+
</html>

CURRENT/doc/constant-values.html

+174-27
Large diffs are not rendered by default.

CURRENT/doc/deprecated-list.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="pl">
44
<head>
5-
<!-- Generated by javadoc (11.0.14.1) on Mon Apr 18 02:25:58 CEST 2022 -->
6-
<title>Deprecated List (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
5+
<!-- Generated by javadoc (11.0.15) on Sat May 21 12:36:51 CEST 2022 -->
6+
<title>Deprecated List (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2022-04-18">
8+
<meta name="dc.created" content="2022-05-21">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
1111
<script type="text/javascript" src="script.js"></script>
@@ -22,7 +22,7 @@
2222
<script type="text/javascript"><!--
2323
try {
2424
if (location.href.indexOf('is-external=true') == -1) {
25-
parent.document.title="Deprecated List (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API)";
25+
parent.document.title="Deprecated List (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API)";
2626
}
2727
}
2828
catch(err) {
@@ -96,7 +96,7 @@
9696
<main role="main">
9797
<div class="header">
9898
<h1 title="Deprecated API" class="title">Deprecated API</h1>
99-
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="http://mathparser.org/wp-content/uploads/2022/04/infima-logo.jpg" alt="INFIMA online store"/></a><br>
99+
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="https://mathparser.org/wp-content/uploads/2022/04/INFIMA-logo-small.png" alt="INFIMA online store"/></a><br>
100100
<h2 title="Contents">Contents</h2>
101101
</div>
102102
</main>
@@ -148,4 +148,4 @@ <h2 title="Contents">Contents</h2>
148148
<p class="legalCopy"><small>Copyright &#169; 2022 <a href="https://mathparser.org/">MathParser.org</a>. All rights reserved.</small></p>
149149
</footer>
150150
</body>
151-
</html>
151+
</html>

CURRENT/doc/help-doc.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="pl">
44
<head>
5-
<!-- Generated by javadoc (11.0.14.1) on Mon Apr 18 02:25:58 CEST 2022 -->
6-
<title>API Help (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
5+
<!-- Generated by javadoc (11.0.15) on Sat May 21 12:36:51 CEST 2022 -->
6+
<title>API Help (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API) - A Highly Flexible Mathematical Expressions Parser - Math Parser Library JAVA Android C# .NET/MONO - MathParser.org</title>
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
8-
<meta name="dc.created" content="2022-04-18">
8+
<meta name="dc.created" content="2022-05-21">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
1111
<script type="text/javascript" src="script.js"></script>
@@ -22,7 +22,7 @@
2222
<script type="text/javascript"><!--
2323
try {
2424
if (location.href.indexOf('is-external=true') == -1) {
25-
parent.document.title="API Help (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.2 API)";
25+
parent.document.title="API Help (MathParser.org-mXparser - Math Expressions Parser / Formula Evaluator library for JAVA Android C# .NET/MONO CLS compliant 5.0.3 API)";
2626
}
2727
}
2828
catch(err) {
@@ -96,7 +96,7 @@
9696
<main role="main">
9797
<div class="header">
9898
<h1 class="title">How This API Document Is Organized</h1>
99-
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="http://mathparser.org/wp-content/uploads/2022/04/infima-logo.jpg" alt="INFIMA online store"/></a><br>
99+
<h3>Buy me a cup of coffee via donation </h3><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=QJYYH86583LEN" target="_blank" rel="noopener"><img class="aligncenter" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Did you find the software useful? Please consider donation" /></a><h3> or support me purchasing the license via <a href="https://mathparser.org/order-commercial-license" target="_blank"><span style="color: yellow; background-color: black"> ORDER Page </span></a>, or <a href="https://payhip.com/INFIMA" target="_blank"><span style="color: yellow; background-color: black"> INFIMA online store </span></a> </h3><br><a href="https://payhip.com/INFIMA" target="_blank"><img src="https://mathparser.org/wp-content/uploads/2022/04/INFIMA-logo-small.png" alt="INFIMA online store"/></a><br>
100100
<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div>
101101
</div>
102102
<div class="contentContainer">
@@ -280,4 +280,4 @@ <h2>Search</h2>
280280
<p class="legalCopy"><small>Copyright &#169; 2022 <a href="https://mathparser.org/">MathParser.org</a>. All rights reserved.</small></p>
281281
</footer>
282282
</body>
283-
</html>
283+
</html>

0 commit comments

Comments
 (0)