C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html

This commit is contained in:
Arash Partow
2016-10-13 11:22:37 +11:00
parent 57041af631
commit c57053fba1
2 changed files with 21 additions and 7 deletions

View File

@ -2769,9 +2769,9 @@ into account when using ExprTk:
function names are case-insensitive.
(07) Variable, vector, string variable and function names must begin
with a letter (A-Z or a-z), then can be comprised of any
combination of letters, digits and underscores. (eg: x, var1 or
power_func99)
with a letter (A-Z or a-z), then can be comprised of any
combination of letters, digits, underscores and dots. (eg: x,
var1 or power_func99, person.age, item.size.0)
(08) Expression lengths and sub-expression lists are limited only by
storage capacity.