Class | Description |
---|---|
Benchmark |
Time evaluating many expressions over many values.
|
Example |
A simple example of parsing and evaluating an expression.
|
Expr |
A mathematical expression, built out of literal numbers, variables,
arithmetic and relational operators, and elementary functions.
|
Parser |
Parses strings representing mathematical formulas with variables.
|
RegressionTest |
Test for bugs in the whole package.
|
Variable |
A variable is a simple expression with a name (like "x") and a
settable value.
|
Exception | Description |
---|---|
SyntaxException |
An exception indicating a problem in parsing an expression.
|