-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathoperations.yaml
More file actions
55 lines (55 loc) · 1.29 KB
/
operations.yaml
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
1:
op: "+"
nbarg: 2
complexity: 1
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.PlusNode"
2:
op: "-"
nbarg: 2
complexity: 1
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.MinusNode"
3:
op: "*"
nbarg: 2
complexity: 1
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.MultNode"
4:
op: "/"
nbarg: 2
complexity: 1
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.DivisionNode"
5:
op: "sin"
nbarg: 1
complexity: 3
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.SineNode"
6:
op: "cos"
nbarg: 1
complexity: 3
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.CosineNode"
7:
op: "log"
nbarg: 1
complexity: 5
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.LogarithmNode"
8:
op: "exp"
nbarg: 1
complexity: 5
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.ExponentialNode"
9:
op: "tanh"
nbarg: 1
complexity: 5
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.TanhNode"
10:
op: "mod"
nbarg: 2
complexity: 5
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.PlusNode"
11:
op: "pow"
nbarg: 2
complexity: 10
tree_node_class: "MLC.Common.LispTreeExpr.OperationNodes.PlusNode"