-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
298 lines (260 loc) · 9.82 KB
/
index.ts
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
type Merge<T> = { [P in keyof T]: T[P] } & {};
type RemapEnumArrToObject<T extends Array<string> | Array<number>> =
T extends [
infer U extends T[number],
...infer Rest extends Array<string> | Array<number>
]
? { [k in U] : U } & RemapEnumArrToObject<Rest>
: {};
const secureObject = (o: Record<string|number|symbol, any>) => {
Object.seal(o);
Object.freeze(o);
Object.preventExtensions(o);
}
const ENUM = <
const T extends Array<string> | Array<number>
>(arr: T):Merge<Readonly<RemapEnumArrToObject<T>>> => {
const map = Object.fromEntries(arr.map( e => [e, e] ));
secureObject(map);
return map;
};
const MONARCHS = {
'NIKOLAY_1': 'Николай 1',
'ALEXEI_MICHAILOVICH': 'Алексей Михайлович',
'EKATERINA_VELIKAYA': 'Екатерина Великая',
'PETR_1': 'Пётр 1',
'MICHAI_FEDOROVICH': 'Михаил Фёдорович',
} as const;
type IMonarchs = keyof typeof MONARCHS;
console.log(MONARCHS)
const baseRules = new Set([
'there is token type [T]',
'there is token [T]', // meaning that it must be placed somewhere
'token [T] is of type [U]',
'token [T] is in slot with index [N]',
'there are exactly [N] spatial slots',
'OR [Rest]', // ???
'AND [Rest]', // ???
'NOT [T]', // ???
'[T] XOR [U]', // ???
]);
const possibleRules = new Set([
'token of type [T] to the left of token of type [U]', // requires minimum 2 spatial slots
'token [T] to the left of token of type [U]', // T ..(0,∞).. U
'token of type [T] to the left of token [U]',
'token [T] to the left of token [U]',
'token of type [T] to the right of token of type [U]', // U ..(0,∞).. T
'token [T] to the right of token of type [U]',
'token of type [T] to the right of token [U]',
'token [T] to the right of token [U]',
'token of type [T] must have a neighbour token of type [U]', // U ..(0).. T, T ..(0).. U
'token [T] must have a neighbour token of type [U]',
'token of type [T] must have a neighbour token [U]',
'token [T] must have a neighbour token [U]',
'there are at most [N] spatial slots',
'there are at least [N] spatial slots',
'there are at most [N] tokens of [M] type in any single spatial slot',
'there are at least [N] tokens of [M] type in any single spatial slot',
'there are exactly [N] tokens of [M] type in any single spatial slot', // for example every single slot must have 1 and only one monarch
'if slot has token [T], it has token [U]',
'there are at most [N] tokens in any single spatial slot',
'there are at least [N] tokens in any single spatial slot',
'there are exactly [N] tokens in any single spatial slot',
] as const);
const remapTokens = {
'token [T] to the left of token [U]': {
searchesFor: [
'there is token [T]',
'there are exactly [N] spatial slots',
],
results(T: string, U: string, N: number) {
const condition = {
type: 'OR [Rest]',
args: { Rest: [] as any[] }
};
for (let i = 0; i < N - 1; i++) {
for (let j = i + 1; j < N; j++) {
condition.args.Rest.push({
type: 'AND [Rest]',
args: {
Rest: [{
type: 'token [T] is in slot with index [N]',
args: { T: T, N: i,}
}, {
type: 'token [T] is in slot with index [N]',
args: { T: U, N: j,}
}]
}
})
}
}
return condition;
},
},
'token of type [T] to the left of token [U]': {
searchesFor: [
'there is token type [T]',
'there is token [U]',
'token [T] is of type [U]',
'there are exactly [N] spatial slots',
],
results(tokensOptionsOfTypeT: string[], U: string) {
return {
type: 'OR [Rest]',
args: {
Rest: tokensOptionsOfTypeT.map(T => ({
type: 'token [T] to the left of token [U]',
args: { T, U }
}))
}
};
}
},
'token [T] to the left of token of type [U]': {
searchesFor: [
'there is token type [T]',
'there is token [U]',
'token [T] is of type [U]',
'there are exactly [N] spatial slots',
],
results(T: string, tokensOptionsOfTypeU: string[]) {
return {
type: 'OR [Rest]',
args: {
Rest: tokensOptionsOfTypeU.map(U => ({
type: 'token [T] to the left of token [U]',
args: { T, U }
}))
}
};
}
},
'token of type [T] to the left of token of type [U]': {
searchesFor: [
'there is token type [T]',
'there is token [U]',
'token [T] is of type [U]',
'there are exactly [N] spatial slots',
],
results(tokensOptionsOfTypeT: string[], tokensOptionsOfTypeU: string[]) {
return {
type: 'OR [Rest]',
args: {
Rest: tokensOptionsOfTypeT
.flatMap(T => tokensOptionsOfTypeU.map(U => ({ T, U })))
.map(args => ({
type: 'token [T] to the left of token [U]',
args
}))
}
};
}
},
'token [T] to the right of token [U]': {
results(T: string, U: string) {
return {
type: 'token [T] to the left of token [U]',
args: { T: U, U: T }
}
},
},
'token of type [T] to the right of token [U]': {
results(T: string, U: string) {
return {
type: 'token [T] to the left of token of type [U]',
args: { T: U, U: T }
}
},
},
'token [T] to the right of token of type [U]': {
results(T: string, U: string) {
return {
type: 'token of type [T] to the left of token [U]',
args: { T: U, U: T }
}
},
},
'token of type [T] to the right of token of type [U]': {
results(T: string, U: string) {
return {
type: 'token of type [T] to the left of token of type [U]',
args: { T: U, U: T }
}
},
},
'token of type [T] must have a neighbour token of type [U]': {
results(T: string, U: string) {
return {
type: 'OR [Rest]',
args: {
Rest: [
'token of type [T] to the left of token of type [U]',
'token of type [T] to the right of token of type [U]',
].map(type => ({ type, args: { T, U } })),
}
};
}
},
'token [T] must have a neighbour token of type [U]': {
results(T: string, U: string) {
return {
type: 'OR [Rest]',
args: {
Rest: [
'token [T] to the left of token of type [U]',
'token [T] to the right of token of type [U]',
].map(type => ({ type, args: { T, U } })),
}
};
}
},
'token of type [T] must have a neighbour token [U]': {
results(T: string, U: string) {
return {
type: 'OR [Rest]',
args: {
Rest: [
'token of type [T] to the left of token [U]',
'token of type [T] to the right of token [U]',
].map(type => ({ type, args: { T, U } })),
}
};
}
},
'token [T] must have a neighbour token [U]': {
results(T: string, U: string) {
return {
type: 'OR [Rest]',
args: {
Rest: [
'token [T] to the left of token [U]',
'token [T] to the right of token [U]',
].map(type => ({ type, args: { T, U } })),
}
};
}
},
}
// (A && B && C) || D => (A && B && C) || D
// есть infinite time-spatial slot sequence.
// на неё можно накладывать правила.
// spatial token slots have indices.
// она может быть детерминированной (иметь ограниченное количество состояний удовлетворяющих вопросу)
// или недетерминированной (например иметь бесконечное количество состояний (например когда не имеет ограниченной длины и сказано, что что-то стоит правее чего-то))
// есть системы, которым соответствует исключительно одно решение
// есть системы, которым соответствует 0 решений
// есть системы, которым соответсвует несколько решений
// решение -- нечто странное, что можно назвать и набором правил и инстансом в котором всё уже расставлено.
// системы решений можно складывать, что приводит к либо расширению пространства решений, либо к его сужению
// rules can be expanded or collapsed. completely expanded ruleset looks like a set of rulesets that have only 1 solution and represents the solution space
// some rulesets are AND combination of few rulesets. some rulesets are OR combination of few rulesets.
// AND rulesets are more restrictive than each of the individual rules. OR rulesets are more allowing than each of the individual rules
// MONARCHS_ENGLISH.MICHAI_FEDOROVICH
// 'Nibiru': 'Нибиру',
// 'Kottedzh': 'Коттедж',
// 'Kolomenskij': 'Коломенский',
// 'Putevoj': 'Путевой',
// для начала чтобы не делать комбинаторный взрыв, нужно занимать как можно меньше места, если возможно
// как этого добиться? сначала применять операции, чья комбинаторная сложность не супер велика -- добавления соседа
// нет смысла скейлить это дело и сразу примерять последовательность из 3х максимально значений на 3 потенциальных
// позиции в 5 слотах