#include "Expression.hpp" #include "muParser.h" #include "../../debug/log/Logger.hpp" using namespace Math; CExpression::CExpression() : m_parser(makeUnique()) { ; } void CExpression::addVariable(const std::string& name, double val) { m_parser->DefineConst(name, val); } std::optional CExpression::compute(const std::string& expr) { try { m_parser->SetExpr(expr); return m_parser->Eval(); } catch (mu::Parser::exception_type& e) { Log::logger->log(Log::ERR, "CExpression::compute: mu threw: {}", e.GetMsg()); } return std::nullopt; }