OASIS
Open Algebra Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages Concepts
Expression.hpp
Go to the documentation of this file.
1#ifndef OASIS_EXPRESSION_HPP
2#define OASIS_EXPRESSION_HPP
3
4#include <cstdint>
5#include <expected>
6#include <memory>
7#include <vector>
8
9#include <boost/any/unique_any.hpp>
10
11#include "Concepts.hpp"
12
13namespace Oasis {
14
15using any = boost::anys::unique_any;
16
17class Visitor;
18
22enum class ExpressionType {
23 None,
24 Real,
27 Add,
30 Divide,
32 Log,
34 Limit,
36 Negate,
37 Sqrt,
38 Matrix,
39 Pi,
42};
43
47enum ExpressionCategory : uint32_t {
48 None = 0,
50 Commutative = 1 << 1,
51 BinExp = 1 << 2,
52 UnExp = 1 << 3,
53};
54
63public:
68 [[nodiscard]] virtual auto Copy() const -> std::unique_ptr<Expression> = 0;
69
74 [[nodiscard]] virtual auto Differentiate(const Expression&) const -> std::unique_ptr<Expression>;
75
87 [[nodiscard]] virtual auto Equals(const Expression& other) const -> bool = 0;
88
94 auto FindZeros() const -> std::vector<std::unique_ptr<Expression>>;
95
100 [[nodiscard]] virtual auto GetCategory() const -> uint32_t;
101
106 [[nodiscard]] virtual auto GetType() const -> ExpressionType;
107
118 [[nodiscard]] virtual auto Generalize() const -> std::unique_ptr<Expression>;
119
125 [[nodiscard]] virtual auto Integrate(const Expression&) const -> std::unique_ptr<Expression>;
126
132 [[nodiscard]] virtual auto IntegrateWithBounds(const Expression&, const Expression&, const Expression&) -> std::unique_ptr<Expression>;
133
140 template <IExpression T>
141 [[nodiscard]] bool Is() const
142 {
143 return GetType() == T::GetStaticType();
144 }
145
146 template <template <typename> typename T>
148 [[nodiscard]] bool Is() const
149 {
150 return GetType() == T<Expression>::GetStaticType();
151 }
152
153 template <template <typename, typename> typename T>
155 [[nodiscard]] bool Is() const
156 {
157 return GetType() == T<Expression, Expression>::GetStaticType();
158 }
159
164 [[nodiscard]] virtual auto Simplify() const -> std::unique_ptr<Expression>;
165
176 [[nodiscard]] virtual auto StructurallyEquivalent(const Expression& other) const -> bool = 0;
177
178 [[nodiscard]] virtual auto Substitute(const Expression& var, const Expression& val) -> std::unique_ptr<Expression> = 0;
179
180 template <IVisitor T>
181 auto Accept(T& visitor) const -> std::expected<typename T::RetT, std::string_view>;
182
183 template <IVisitor T>
184 requires ExpectedWithString<typename T::RetT>
185 auto Accept(T& visitor) const -> typename T::RetT;
186
187 virtual ~Expression() = default;
188
189protected:
195 virtual any AcceptInternal(Visitor& visitor) const = 0;
196};
197
198template <IVisitor T>
199auto Expression::Accept(T& visitor) const -> std::expected<typename T::RetT, std::string_view>
200{
201 try {
202 return boost::any_cast<typename T::RetT>(this->AcceptInternal(visitor));
203 } catch (boost::bad_any_cast& e) {
204 return std::unexpected { e.what() };
205 }
206}
207
208template <IVisitor T>
210auto Expression::Accept(T& visitor) const -> typename T::RetT
211{
212 try {
213 return boost::any_cast<typename T::RetT>(this->AcceptInternal(visitor));
214 } catch (boost::bad_any_cast& e) {
215 return std::unexpected { e.what() };
216 }
217}
218
219#define EXPRESSION_TYPE(type) \
220 auto GetType() const -> ExpressionType override \
221 { \
222 return ExpressionType::type; \
223 } \
224 \
225 static auto GetStaticType() -> ExpressionType \
226 { \
227 return ExpressionType::type; \
228 }
229
230#define EXPRESSION_CATEGORY(category) \
231 auto GetCategory() const -> uint32_t override \
232 { \
233 return category; \
234 } \
235 \
236 constexpr static auto GetStaticCategory() -> uint32_t \
237 { \
238 return category; \
239 }
240
241} // namespace Oasis
242
247
248#endif // OASIS_EXPRESSION_HPP
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 Visit.hpp:50
Definition Concepts.hpp:53
Definition Concepts.hpp:58
Definition Concepts.hpp:69
An expression concept.
Definition Concepts.hpp:27
Definition Concepts.hpp:63
Definition Add.hpp:11
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
T unexpected(T... args)