We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84057f3 commit 6fe2095Copy full SHA for 6fe2095
README.md
@@ -27,7 +27,7 @@ A single function string `funcstr` can be parsed (checked and compiled) into
27
bytecode by calling the `fparser` class method subroutine `parse`:
28
29
```fortran
30
-call me%parse(funcstr, var, case_sensitive, error_msg)
+call me%parse(funcstr, var, case_sensitive)
31
```
32
33
The variable names as they appear in the string `funcstr` have to be passed
@@ -44,7 +44,7 @@ The function value is evaluated for a specific set of variable values
44
by calling the `fparser` class method subroutine `evaluate`:
45
46
47
-call me%evaluate(val, res, error_msg)
+call me%evaluate(val, res)
48
49
50
The variable values are passed in the one-dimensional array `val` which must
0 commit comments