1#ifndef OASIS_EXPRESSION_HPP
2#define OASIS_EXPRESSION_HPP
9#include <boost/any/unique_any.hpp>
15using any = boost::anys::unique_any;
100 [[nodiscard]] virtual auto
GetCategory() const -> uint32_t;
141 [[nodiscard]]
bool Is()
const
143 return GetType() == T::GetStaticType();
141 [[nodiscard]]
bool Is()
const {
…}
146 template <
template <
typename>
typename T>
148 [[nodiscard]]
bool Is()
const
150 return GetType() == T<Expression>::GetStaticType();
148 [[nodiscard]]
bool Is()
const {
…}
153 template <
template <
typename,
typename>
typename T>
155 [[nodiscard]]
bool Is()
const
157 return GetType() == T<Expression, Expression>::GetStaticType();
155 [[nodiscard]]
bool Is()
const {
…}
181 auto
Accept(T& visitor) const ->
std::expected<typename T::RetT,
std::string_view>;
185 auto
Accept(T& visitor) const -> typename T::RetT;
202 return boost::any_cast<typename T::RetT>(this->
AcceptInternal(visitor));
203 }
catch (boost::bad_any_cast& e) {
213 return boost::any_cast<typename T::RetT>(this->
AcceptInternal(visitor));
214 }
catch (boost::bad_any_cast& e) {
219#define EXPRESSION_TYPE(type) \
220 auto GetType() const -> ExpressionType override \
222 return ExpressionType::type; \
225 static auto GetStaticType() -> ExpressionType \
227 return ExpressionType::type; \
219#define EXPRESSION_TYPE(type) \ …
230#define EXPRESSION_CATEGORY(category) \
231 auto GetCategory() const -> uint32_t override \
236 constexpr static auto GetStaticCategory() -> uint32_t \
230#define EXPRESSION_CATEGORY(category) \ …
std::unique_ptr< Oasis::Expression > operator+(const std::unique_ptr< Oasis::Expression > &lhs, const std::unique_ptr< Oasis::Expression > &rhs)
Definition Expression.cpp:250
std::unique_ptr< Oasis::Expression > operator*(const std::unique_ptr< Oasis::Expression > &lhs, const std::unique_ptr< Oasis::Expression > &rhs)
Definition Expression.cpp:258
std::unique_ptr< Oasis::Expression > operator/(const std::unique_ptr< Oasis::Expression > &lhs, const std::unique_ptr< Oasis::Expression > &rhs)
Definition Expression.cpp:262
std::unique_ptr< Oasis::Expression > operator-(const std::unique_ptr< Oasis::Expression > &lhs, const std::unique_ptr< Oasis::Expression > &rhs)
Definition Expression.cpp:254
An expression.
Definition Expression.hpp:62
virtual auto Copy() const -> std::unique_ptr< Expression >=0
Copies this expression.
virtual auto StructurallyEquivalent(const Expression &other) const -> bool=0
Checks whether this expression is structurally equivalent to another expression.
virtual auto Integrate(const Expression &) const -> std::unique_ptr< Expression >
Attempts to integrate this expression using integration rules.
Definition Expression.cpp:230
virtual any AcceptInternal(Visitor &visitor) const =0
This function serializes the expression object.
virtual auto GetCategory() const -> uint32_t
Gets the category of this expression.
Definition Expression.cpp:212
auto FindZeros() const -> std::vector< std::unique_ptr< Expression > >
The FindZeros function finds all rational real zeros, and up to 2 irrational/complex zeros of a polyn...
Definition Expression.cpp:51
bool Is() const
Gets whether this expression is of a specific type.
Definition Expression.hpp:141
auto Accept(T &visitor) const -> std::expected< typename T::RetT, std::string_view >
Definition Expression.hpp:199
bool Is() const
Definition Expression.hpp:148
virtual auto GetType() const -> ExpressionType
Gets the type of this expression.
Definition Expression.cpp:220
virtual auto IntegrateWithBounds(const Expression &, const Expression &, const Expression &) -> std::unique_ptr< Expression >
Attempts to integrate this expression using integration rules.
Definition Expression.cpp:237
virtual auto Simplify() const -> std::unique_ptr< Expression >
Simplifies this expression.
Definition Expression.cpp:244
virtual auto Differentiate(const Expression &) const -> std::unique_ptr< Expression >
Tries to differentiate this function.
Definition Expression.cpp:216
bool Is() const
Definition Expression.hpp:155
virtual auto Substitute(const Expression &var, const Expression &val) -> std::unique_ptr< Expression >=0
virtual auto Generalize() const -> std::unique_ptr< Expression >
Converts this expression to a more general expression.
Definition Expression.cpp:225
virtual auto Equals(const Expression &other) const -> bool=0
Compares this expression to another expression for equality.
Definition Magnitude.hpp:28
Definition Concepts.hpp:53
Definition Concepts.hpp:58
Definition Concepts.hpp:69
An expression concept.
Definition Concepts.hpp:27
Definition Concepts.hpp:63
boost::anys::unique_any any
Definition Expression.hpp:15
ExpressionCategory
The category of an expression.
Definition Expression.hpp:47
@ UnExp
Definition Expression.hpp:52
@ None
Definition Expression.hpp:48
@ Commutative
Definition Expression.hpp:50
@ Associative
Definition Expression.hpp:49
@ BinExp
Definition Expression.hpp:51
ExpressionType
The type of an expression.
Definition Expression.hpp:22