-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexpression_parser.hpp
218 lines (176 loc) · 6.93 KB
/
expression_parser.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
* Copyright 2020 Casey Sanchez
*/
#pragma once
#include <exception>
#include <memory>
#include <string>
#include <map>
#include <algorithm>
#include <regex>
#include <variant>
#include <iostream>
#include "node.hpp"
#include "operations.hpp"
#include "functions.hpp"
#include "utils.hpp"
#include "matrix.hpp"
#include "complex_parser.hpp"
class ExpressionParserContext
{
friend class ExpressionParser;
uint32_t m_expression_id;
uint32_t m_function_id;
uint32_t m_constant_id;
uint32_t m_matrix_id;
public:
static std::shared_ptr<ExpressionParserContext> const default_context;
ExpressionParserContext();
private:
std::string NextExpressionName();
std::string NextFunctionName();
std::string NextConstantName();
std::string NextMatrixName();
};
class ExpressionParser
{
std::string m_expression_str;
std::map<std::string, std::variant<Scalar, Matrix>> m_node_map;
std::shared_ptr<ExpressionParserContext> m_parser_context;
ExpressionParser(std::string const &expression_str, std::map<std::string, std::variant<Scalar, Matrix>> const &node_map, std::shared_ptr<ExpressionParserContext> const &parser_context, bool const &clean_and_verify);
public:
ExpressionParser(std::string const &expression_str, std::map<std::string, std::variant<Scalar, Matrix>> const &node_map = { }, std::shared_ptr<ExpressionParserContext> const &parser_context = ExpressionParserContext::default_context);
std::variant<Scalar, Matrix> Parse();
private:
void Clean();
void Verify();
std::string Matrices(std::string const &expression_str);
void Cols(std::string const &expression_str, std::vector<Scalar> &col_elements);
void Rows(std::string const &expression_str, std::vector<std::vector<Scalar>> &row_elements);
std::variant<Scalar, Matrix> Brackets(std::string const &expression_str);
std::variant<Scalar, Matrix> Functions(std::string const &expression_str);
std::variant<Scalar, Matrix> Operators(std::string const &expression_str);
std::variant<Scalar, Matrix> Nodes(std::string const &expression_str);
private:
struct AdditionVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Matrix const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Matrix const &rhs);
};
struct SubtractionVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Matrix const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Matrix const &rhs);
};
struct MultiplicationVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Matrix const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Matrix const &rhs);
};
struct DivisionVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Matrix const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Matrix const &rhs);
};
struct ExponentiationVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Scalar const &lhs, Matrix const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Scalar const &rhs);
std::variant<Scalar, Matrix> operator()(Matrix const &lhs, Matrix const &rhs);
};
struct CosVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct SinVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct TanVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct AcosVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct AsinVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct AtanVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct SqrtVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct AbsVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct ExpVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct LnVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct SubmatrixVisitor
{
size_t m_row;
size_t m_col;
SubmatrixVisitor(size_t const &row, size_t const &col);
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct TransposeVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct MinorVisitor
{
size_t m_row;
size_t m_col;
MinorVisitor(size_t const &row, size_t const &col);
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct DeterminantVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct CofactorVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
struct InverseVisitor
{
std::variant<Scalar, Matrix> operator()(Scalar const &arg);
std::variant<Scalar, Matrix> operator()(Matrix const &arg);
};
};