-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpr.py
343 lines (270 loc) · 8.21 KB
/
expr.py
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
from enum import Enum
from op import Op
from copy import deepcopy
class Expr:
def num(n):
return Expr(Op.LEAF, n)
def __init__(self, op, *children):
self.op = op
# TODO: make this a rule
if self.op.is_associative():
# combine associative trees
self.children = []
for child in children:
if child.op and op == child.op:
for grandchild in child:
self.children.append(grandchild)
else:
self.children.append(child)
self.children.sort(reverse=True)
else:
if self.op == Op.DERIV and not children[0].is_var():
print('Invalid argument to derivative: first child must be independent variable')
exit()
self.children = list(children)
### LIST FUNCTIONS ###
def __getitem__(self, i):
return self.children[i]
def __len__(self) -> int:
return len(self.children)
def __iter__(self):
return self.children.__iter__()
### ATTRIBUTES ###
def is_pattern(self) -> bool:
return False
def is_leaf(self) -> bool:
return self.op == Op.LEAF
def is_var(self) -> bool:
return self.is_leaf() and type(self[0]) is str and not self[0].isnumeric()
def is_const(self) -> bool:
return self.is_leaf() and (isinstance(self[0], int) or isinstance(self[0], float))
def is_constexpr(self) -> bool:
if self.is_var():
return False
elif self.is_const():
return True
else:
return all(c.is_constexpr() for c in self.get_child_nodes())
# return "real" child nodes
def get_child_nodes(self) -> bool:
if self.op in [Op.PLUS, Op.MINUS, Op.MUL, Op.DIV, Op.POW, Op.SIN, Op.COS]:
return self.children
elif self.op == Op.DERIV:
return [self.children[1]]
# leaf
else:
return []
# return "real" child nodes
def enumerate_child_nodes(self) -> bool:
if self.op in [Op.PLUS, Op.MINUS, Op.MUL, Op.DIV, Op.POW, Op.SIN, Op.COS]:
i = 0
for child in self.children:
yield i, child
i += 1
elif self.op == Op.DERIV:
yield 1, self.children[1]
# leaf
else:
yield from []
### EVAL AND SIMPLIFICATION ###
def simplify(self):
# evauluate constant expression
if self.is_constexpr():
if self.op == Op.DERIV:
return Expr.num(0)
else:
try:
return Expr.num(self())
except ZeroDivisionError:
return self
# simplify constexprs and exprs separately
elif self.op.is_associative() and len(self) > 2:
constexprs = [e for e in self if e.is_constexpr()]
exprs = [e for e in self if not e.is_constexpr()]
if len(constexprs) and len(exprs):
return Expr(
self.op,
Expr(self.op, *exprs).simplify() if len(exprs) > 1 else exprs[0],
Expr(self.op, *constexprs).simplify() if len(constexprs) > 1 else constexprs[0])
if not self.is_leaf():
return Expr(self.op, *(e.simplify() for e in self))
else:
return self
# eval given variable values
def __call__(self, **vars: dict[str, int]) -> [int, float]:
if self.is_var():
return vars[self[0]]
elif self.is_const():
return self[0]
elif self.op == Op.DERIV:
return self.simplify()(**vars)
return self.op.func()(*[c(**vars) for c in self])
### COMPARISON OPERATORS ###
def __eq__(self, other) -> bool:
if isinstance(other, Expr) and len(self) == len(other) and self.op == other.op:
if self.op.is_associative():
sort_self = sorted(self.children)
sort_other = sorted(other.children)
return all(sort_self[n] == sort_other[n] for n in range(len(self)))
if all(self[n] == other[n] for n in range(len(self))):
return True
return False
def __hash__(self) -> int:
if self.is_leaf():
return hash(self[0])
h = self.op.value * 31
for c in self:
h = h * 31 + hash(c)
return h
def __lt__(self, other) -> bool:
if self.op == other.op:
if self.op == Op.LEAF:
# 1 < 2
if self.is_const() and other.is_const():
return self() < other()
# z < a
elif self.is_var() and other.is_var():
return self[0] > other[0]
# const < var
else:
return self.is_const()
else:
if len(self) != len(other):
return len(self) < len(other)
# self other
# / \ / \
# 1 x 2 3
# idk how else this should be sorted, need to look at children
return self.op < other.op
### TREE MODIFICATION ###
# in-place modification, also returns new tree in case of root modification
def replace(self, match, replacement):
if self == match:
return replacement.deepcopy()
# don't go through children
if self.is_leaf():
return self
# if self associative and >2 children, look for match and split tree
if self.op == match.op and self.op.is_associative() and len(self) > len(match):
indicies = []
for m in match:
for i in range(len(self)):
if self[i] == m and i not in indicies:
indicies.append(i)
break
else:
# break if match wasnt found
break
# if there was match found for every match
else:
# split tree so that match will be found and replaced
self.split_tree(indicies)
# check for matches in children
for i, child in enumerate(self):
if child == match:
self.children[i] = replacement.deepcopy()
else:
self.children[i] = child.replace(match, replacement)
return self
# NOTE: assumes that tree only has unique Expr objects
def replace_by_id(self, target_id: int, replacement):
if id(self) == target_id:
return replacement.deepcopy()
# don't go through children
if self.is_leaf():
return self
for i, child in enumerate(self):
if id(child) == target_id:
self.children[i] = replacement.deepcopy()
return self
else:
self.children[i] = child.replace_by_id(target_id, replacement)
return self
# split associative tree (>2 children) into multi-level tree
def split_tree(self, grandchild_indicies: list[int]):
# prevent creating single child trees
if not self.op.is_associative() or len(self) < 3:
return
grandchild_indicies.sort()
child_tree = Expr(
self.op,
*[self.children[i] for i in grandchild_indicies])
for i in reversed(grandchild_indicies):
del self.children[i]
self.children.append(child_tree)
def deepcopy(self):
return deepcopy(self)
### STRING REPRESENTATION ###
def __str__(self) -> str:
PREFIX_NOTATION = False
DEBUG = False
if DEBUG:
if self.op == Op.LEAF:
return f'EXPR[{hex(id(self))} {self[0]}]'
else:
return f'EXPR[{hex(id(self))} {str(self.op)} {self.children}]'
elif PREFIX_NOTATION:
if self.op == Op.LEAF:
return str(self[0])
elif self.op == Op.DERIV:
return f'd/d{self[0]}[{self[1]}]'
else:
return f'({self.op} {" ".join(map(str, self))})'
else:
if self.op == Op.POW:
return f'{self[0]}^{self[1]}'
elif self.op.is_function():
return f'{self.op}({self[0]})'
elif self.op == Op.LEAF:
return str(self[0])
elif self.op == Op.DERIV:
return f'{str(self.op)}{self[0]}[{self[1]}]'
inner = str(self.op).join(map(str, self))
return '(' + inner + ')'
def __repr__(self) -> str:
return self.__str__()
class MatchType(Enum):
ANY = 0
CONST = 1
NEG_CONST = 2
SAME_VAR = 3
class Pattern(Expr):
def Const(id):
return Pattern(id, MatchType.CONST)
def NegConst(id):
return Pattern(id, MatchType.NEG_CONST)
def SameVar(id):
return Pattern(id, MatchType.SAME_VAR)
def __init__(self, id, match_type: MatchType = MatchType.ANY):
self.op = Op.LEAF
self.id = id.lstrip('_')
self.match_type = match_type
def is_pattern(self) -> bool:
return True
def matches(self, other: Expr) -> bool:
if self.match_type == MatchType.ANY:
return True
elif self.match_type == MatchType.NEG_CONST:
return other.is_const() and other[0] < 0
elif self.match_type == MatchType.CONST:
return other.is_constexpr()
elif self.match_type == MatchType.SAME_VAR:
return other.is_var() and other[0] == self.id
return False
def __getitem__(self, i):
return self.id if i == 0 else None
def __len__(self) -> int:
return 1
def __eq__(self, other) -> bool:
return isinstance(other, Pattern) and self.id == other.id
def __hash__(self) -> int:
return hash(self.id) * 31
def __lt__(self, other) -> bool:
return isinstance(other, Pattern) and self.id < other.id
def __str__(self) -> str:
if self.match_type == MatchType.CONST:
return f'_{self.id}{{C}}'
elif self.match_type == MatchType.NEG_CONST:
return f'_{self.id}{{-C}}'
else:
return f'_{self.id}'