File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ This algorithm is faster than JEP math expresion parser!!! If you compare java.m
4747
4848### Real numbers
4949
50- Parser.SimpleEval ("6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4"); --> for real functions
50+ Parser.simpleEval ("6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4"); --> for real functions
5151
5252 String f_x = "+3 +5*5*(+1)";
5353
@@ -64,7 +64,7 @@ This algorithm is faster than JEP math expresion parser!!! If you compare java.m
6464 final Point zo = new Point("z", new Double(1));
6565 String f_xs = " 2*(-(((z*3)*sqrt(x^(2)))+3))";
6666
67- Parser.Eval (f_xs, xo, zo); --> multiple vars
67+ Parser.eval (f_xs, xo, zo); --> multiple vars
6868
6969 String f_xs = "x+5*y+(3 -y)";
7070 final Point xo = new Point("x", "1+1");
@@ -90,7 +90,7 @@ This algorithm is faster than JEP math expresion parser!!! If you compare java.m
9090
9191 These are the results for the version 3.0 (master). You can check the speedTests in the project
9292
93- Parser.SimpleEval ("6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4 + 6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4
93+ Parser.simpleEval ("6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4 + 6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4
9494 + 6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4 + 6.5*7.8^2.3 + (3.5^3+7/2)^3 -(5*4/(2-3))*4");
9595
9696 CPU: i7-6500U
You can’t perform that action at this time.
0 commit comments