OPAL (Object Oriented Parallel Accelerator Library)
2021.1.99
OPAL
|
#include <matheval.hpp>
Public Types | |
using | result_type = typename expr_ast< real_t >::tree_t |
Necessary typedef for boost::apply_visitor More... | |
Public Member Functions | |
result_type | operator() (nil) const |
Empty nodes in the tree evaluate to 0. More... | |
result_type | operator() (real_t n) const |
Numbers evaluate to themselves. More... | |
result_type | operator() (std::string const &c) const |
Variables do not evaluate. More... | |
result_type | operator() (expr_ast< real_t > const &ast) const |
Recursively evaluate the AST. More... | |
result_type | operator() (binary_op< real_t > const &tree) const |
Evaluate a binary operator and optionally recurse its operands. More... | |
result_type | operator() (unary_op< real_t > const &tree) const |
Evaluate a unary operator and optionally recurse its operand. More... | |
Definition at line 279 of file matheval.hpp.
using matheval::detail::ConstantFolder< real_t >::result_type = typename expr_ast<real_t>::tree_t |
Necessary typedef for boost::apply_visitor
Definition at line 281 of file matheval.hpp.
|
inline |
Evaluate a binary operator and optionally recurse its operands.
Definition at line 298 of file matheval.hpp.
|
inline |
Recursively evaluate the AST.
Definition at line 293 of file matheval.hpp.
References matheval::detail::expr_ast< real_t >::tree.
|
inline |
Empty nodes in the tree evaluate to 0.
Definition at line 284 of file matheval.hpp.
|
inline |
Numbers evaluate to themselves.
Definition at line 287 of file matheval.hpp.
References Hypervolume::n.
|
inline |
|
inline |
Evaluate a unary operator and optionally recurse its operand.
Definition at line 311 of file matheval.hpp.