-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathops.js
122 lines (116 loc) · 2.37 KB
/
ops.js
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
'use strict';
var full_ops = [
{
'name': '+',
'f': function (a, b) {
return a + b;
},
'difficulty': 1,
'precedence': 4,
'assoc': 'left'
},
{
'name': '-',
'f': function (a, b) {
return a - b;
},
'difficulty': 2,
'precedence': 4,
'assoc': 'left'
},
{
'name': '*',
'f': function (a, b) {
return a * b;
},
'difficulty': 3,
'precedence': 5,
'assoc': 'left'
},
{
'name': '/',
'f': function (a, b) {
return a / b;
},
'difficulty': 4,
'precedence': 5,
'assoc': 'left'
},
{
'name': '**',
'f': function (a, b) {
return Math.pow(a, b);
},
'difficulty': 10,
'precedence': 6,
'assoc': 'right'
},
{
'name': '//',
'f': function (a, b) {
return Math.floor(a / b);
},
'difficulty': 14,
'precedence': 5,
'assoc': 'left'
},
{
'name': '%',
'f': function (a, b) {
return a % b;
},
'difficulty': 14,
'precedence': 5,
'assoc': 'left'
},
{
'name': '&',
'f': function (a, b) {
return a & b;
},
'difficulty': 20,
'precedence': 3,
'assoc': 'left'
},
{
'name': '|',
'f': function (a, b) {
return a | b;
},
'difficulty': 20,
'precedence': 1,
'assoc': 'left'
},
{
'name': '^',
'f': function (a, b) {
return a ^ b;
},
'difficulty': 20,
'precedence': 2,
'assoc': 'left'
}
];
var create_op_dict = function () {
var d = {};
for (var i = 0; i < full_ops.length; i++) {
d[full_ops[i].name] = full_ops[i];
}
return d;
}
var full_op_dict = create_op_dict(full_ops);
var ops = full_ops;
var op_dict = full_op_dict;
var use_operators = function (s) {
var ops_to_use = s.split(' ');
if (ops_to_use.some(function (op) {
return !(op in full_op_dict);
})) {
return false;
}
ops = full_ops.filter(function (x) {
return ops_to_use.indexOf(x.name) !== -1;
});
op_dict = create_op_dict(ops);
return true;
}