50 OpSearch {
true,
bAdd, 0,
'+', [](
double a,
double b) {
return a +
b; }},
51 OpSearch {
true,
bSub, 0,
'-', [](
double a,
double b) {
return a -
b; }},
52 OpSearch {
true,
bMul, 1,
'*', [](
double a,
double b) {
return a *
b; }},
53 OpSearch {
true,
bDiv, 1,
'/', [](
double a,
double b) {
return a /
b; }},
56 return std::pow(a,
b); }
61 expr.erase(remove_if(expr.begin(), expr.end(), isspace), expr.end());
82 for (
int i = expr.size() - 1;
i >= 0;
i--) {
88 if (par < 0)
return NULL;
89 if (par > 0)
continue;
91 for (
unsigned opt = 0; opt <
ops.size(); opt++) {
92 if (
ops[opt].priority !=
p)
continue;
93 if (
ops[opt].
c == expr[
i]) {
97 l =
parse(expr.substr(0, i));
99 if ((l && r) || (!
ops[opt].binary &&
r)) {
113 if (expr.size() >= 2 && expr[0] ==
'(' && expr[expr.size() - 1] ==
')')
114 return parse(expr.substr(1, expr.size() - 2));
119 double v = strtod(expr.c_str(), &sptr);
120 if (sptr != expr.c_str()) {
130 bool contains_non_alpha =
false;
132 contains_non_alpha = contains_non_alpha or
133 !( (
c >=
'a' &&
c <=
'z') ||
134 (
c >=
'A' &&
c <=
'Z') ||
135 (
c >=
'0' &&
c <=
'9') ||
136 c ==
'$' ||
c ==
'\\' ||
c ==
'.' ||
c ==
'_');
138 if (!contains_non_alpha) {
158 for (
auto & opt :
ops)
160 return opt.fn(
eval(n->
l, fn),
eval(n->
r, fn) );
162 panic(
"Invalid node!\n");
169 ret += prefix +
"|-- " + n->
toStr() +
"\n";
171 ret +=
toStr(n->
r, prefix +
"| ");
173 ret +=
toStr(n->
l, prefix +
"| ");
#define panic(...)
This implements a cprintf based panic() function.
std::array< OpSearch, uNeg+1 > ops
Operator list.
Node * parse(std::string expr)
Parse and create nodes from string.
Overload hash function for BasicBlockRange type.
std::vector< std::string > getVariables() const
Return all variables in the this expression.
MathExpr(std::string expr)
double eval(EvalCallback fn) const
Evaluates the expression.
std::string toStr() const
std::function< double(std::string)> EvalCallback
std::string toStr() const
Prints an ASCII representation of the expression tree.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...