psaegert commited on
Commit
c542927
·
unverified ·
1 Parent(s): e8c4a3d

Rename directory for engines, add base engine config

Browse files
engines/base/config.yaml ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ operators:
2
+ "+":
3
+ realization: "+"
4
+ alias: []
5
+ inverse: "-"
6
+ arity: 2
7
+ precedence: 1
8
+ commutative: true
9
+ "-":
10
+ realization: "-"
11
+ alias: []
12
+ inverse: "+"
13
+ arity: 2
14
+ precedence: 1
15
+ commutative: false
16
+ neg:
17
+ realization: "simplipy.operators.neg"
18
+ alias: []
19
+ inverse: "neg"
20
+ arity: 1
21
+ precedence: 2.5
22
+ commutative: false
23
+ "*":
24
+ realization: "*"
25
+ alias: []
26
+ inverse: "/"
27
+ arity: 2
28
+ precedence: 2
29
+ commutative: true
30
+ "/":
31
+ realization: "simplipy.operators.div"
32
+ alias: []
33
+ inverse: "*"
34
+ arity: 2
35
+ precedence: 2
36
+ commutative: false
37
+ abs:
38
+ realization: "simplipy.operators.abs"
39
+ alias: []
40
+ inverse: null
41
+ arity: 1
42
+ precedence: 3
43
+ commutative: false
44
+ inv:
45
+ realization: "simplipy.operators.inv"
46
+ alias: ["inverse"]
47
+ inverse: "inv"
48
+ arity: 1
49
+ precedence: 4
50
+ commutative: false
51
+ pow:
52
+ realization: "simplipy.operators.pow"
53
+ alias: ["power"]
54
+ inverse: null
55
+ arity: 2
56
+ precedence: 3
57
+ commutative: false
58
+ pow2:
59
+ realization: "simplipy.operators.pow2"
60
+ alias: ["square"]
61
+ inverse: null
62
+ arity: 1
63
+ precedence: 3
64
+ commutative: false
65
+ pow3:
66
+ realization: "simplipy.operators.pow3"
67
+ alias: ["cube"]
68
+ inverse: "pow1_3"
69
+ arity: 1
70
+ precedence: 3
71
+ commutative: false
72
+ pow4:
73
+ realization: "simplipy.operators.pow4"
74
+ alias: []
75
+ inverse: null
76
+ arity: 1
77
+ precedence: 3
78
+ commutative: false
79
+ pow5:
80
+ realization: "simplipy.operators.pow5"
81
+ alias: []
82
+ inverse: "pow1_5"
83
+ arity: 1
84
+ precedence: 3
85
+ commutative: false
86
+ pow1_2:
87
+ realization: "simplipy.operators.pow1_2"
88
+ alias: ["sqrt"]
89
+ inverse: null
90
+ arity: 1
91
+ precedence: 3
92
+ commutative: false
93
+ pow1_3:
94
+ realization: "simplipy.operators.pow1_3"
95
+ alias: []
96
+ inverse: null
97
+ arity: 1
98
+ precedence: 3
99
+ commutative: false
100
+ pow1_4:
101
+ realization: "simplipy.operators.pow1_4"
102
+ alias: []
103
+ inverse: null
104
+ arity: 1
105
+ precedence: 3
106
+ commutative: false
107
+ pow1_5:
108
+ realization: "simplipy.operators.pow1_5"
109
+ alias: []
110
+ inverse: null
111
+ arity: 1
112
+ precedence: 3
113
+ commutative: false
114
+ sin:
115
+ realization: "simplipy.operators.sin"
116
+ alias: []
117
+ inverse: "asin"
118
+ arity: 1
119
+ precedence: 2
120
+ commutative: false
121
+ cos:
122
+ realization: "simplipy.operators.cos"
123
+ alias: []
124
+ inverse: "acos"
125
+ arity: 1
126
+ precedence: 2
127
+ commutative: false
128
+ tan:
129
+ realization: "simplipy.operators.tan"
130
+ alias: []
131
+ inverse: "atan"
132
+ arity: 1
133
+ precedence: 2
134
+ commutative: false
135
+ asin:
136
+ realization: "simplipy.operators.asin"
137
+ alias: ["arcsin"]
138
+ inverse: "sin"
139
+ arity: 1
140
+ precedence: 2
141
+ commutative: false
142
+ acos:
143
+ realization: "simplipy.operators.acos"
144
+ alias: ["arccos"]
145
+ inverse: "cos"
146
+ arity: 1
147
+ precedence: 2
148
+ commutative: false
149
+ atan:
150
+ realization: "simplipy.operators.atan"
151
+ alias: ["arctan"]
152
+ inverse: "tan"
153
+ arity: 1
154
+ precedence: 2
155
+ commutative: false
156
+ sinh:
157
+ realization: "simplipy.operators.sinh"
158
+ alias: []
159
+ inverse: "asinh"
160
+ arity: 1
161
+ precedence: 2
162
+ commutative: false
163
+ cosh:
164
+ realization: "simplipy.operators.cosh"
165
+ alias: []
166
+ inverse: "acosh"
167
+ arity: 1
168
+ precedence: 2
169
+ commutative: false
170
+ tanh:
171
+ realization: "simplipy.operators.tanh"
172
+ alias: []
173
+ inverse: "atanh"
174
+ arity: 1
175
+ precedence: 2
176
+ commutative: false
177
+ asinh:
178
+ realization: "simplipy.operators.asinh"
179
+ alias: ["arcsinh"]
180
+ inverse: "sinh"
181
+ arity: 1
182
+ precedence: 2
183
+ commutative: false
184
+ acosh:
185
+ realization: "simplipy.operators.acosh"
186
+ alias: ["arccosh"]
187
+ inverse: "cos"
188
+ arity: 1
189
+ precedence: 2
190
+ commutative: false
191
+ atanh:
192
+ realization: "simplipy.operators.atanh"
193
+ alias: ["arctanh"]
194
+ inverse: "tan"
195
+ arity: 1
196
+ precedence: 2
197
+ commutative: false
198
+ exp:
199
+ realization: "simplipy.operators.exp"
200
+ alias: []
201
+ inverse: "log"
202
+ arity: 1
203
+ precedence: 3
204
+ commutative: false
205
+ log:
206
+ realization: "simplipy.operators.log"
207
+ alias: ["ln"]
208
+ inverse: "exp"
209
+ arity: 1
210
+ precedence: 2
211
+ commutative: false
212
+ mult2:
213
+ realization: "simplipy.operators.mult2"
214
+ alias: []
215
+ inverse: div2
216
+ arity: 1
217
+ precedence: 3
218
+ commutative: false
219
+ mult3:
220
+ realization: "simplipy.operators.mult3"
221
+ alias: []
222
+ inverse: div3
223
+ arity: 1
224
+ precedence: 3
225
+ commutative: false
226
+ mult4:
227
+ realization: "simplipy.operators.mult4"
228
+ alias: []
229
+ inverse: div4
230
+ arity: 1
231
+ precedence: 3
232
+ commutative: false
233
+ mult5:
234
+ realization: "simplipy.operators.mult5"
235
+ alias: []
236
+ inverse: div5
237
+ arity: 1
238
+ precedence: 3
239
+ commutative: false
240
+ div2:
241
+ realization: "simplipy.operators.div2"
242
+ alias: []
243
+ inverse: mult2
244
+ arity: 1
245
+ precedence: 3
246
+ commutative: false
247
+ div3:
248
+ realization: "simplipy.operators.div3"
249
+ alias: []
250
+ inverse: mult3
251
+ arity: 1
252
+ precedence: 3
253
+ commutative: false
254
+ div4:
255
+ realization: "simplipy.operators.div4"
256
+ alias: []
257
+ inverse: mult4
258
+ arity: 1
259
+ precedence: 3
260
+ commutative: false
261
+ div5:
262
+ realization: "simplipy.operators.div5"
263
+ alias: []
264
+ inverse: mult5
265
+ arity: 1
266
+ precedence: 3
267
+ commutative: false
268
+
269
+ rules: null
{rulesets → engines}/dev_7-2/config.yaml RENAMED
File without changes
{rulesets → engines}/dev_7-2/rules.json RENAMED
File without changes
{rulesets → engines}/dev_7-3/config.yaml RENAMED
File without changes
{rulesets → engines}/dev_7-3/rules.json RENAMED
File without changes