Adds a const variable to #innerVariables;
(String name, double value)
| 745 | * Adds a const variable to {@link #innerVariables}; |
| 746 | */ |
| 747 | private void addConst(String name, double value) { |
| 748 | // variables can update the default constants |
| 749 | //removeVariable(name); |
| 750 | innerVariables.add(new MathVariable(name, value)); |
| 751 | } |
| 752 | |
| 753 | /** |
| 754 | * Returns the instance of {@link MathVariable} if the variable exists |
no outgoing calls
no test coverage detected