-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathOptimization Online.js
418 lines (400 loc) · 11.5 KB
/
Optimization Online.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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
"translatorID": "0ee623f9-0a5c-4f6a-a5e1-10e2feaa16a7",
"label": "Optimization Online",
"creator": "Pascal Quach",
"target": "^https?://optimization-online\\.org/",
"minVersion": "6.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2023-07-15 13:50:06"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2023 Pascal Quach <[email protected]>
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, url) { // eslint-disable-line no-unused-vars
if (doc.body.classList.contains('single-post')) {
return 'preprint';
}
else if (getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.entry-title > a');
for (let row of rows) {
let href = row.href;
let title = ZU.trimInternal(row.textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
async function doWeb(doc, url) {
if (detectWeb(doc, url) == 'multiple') {
let items = await Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc, url);
}
}
async function scrape(doc, url) {
let translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setDocument(doc);
translator.setHandler('itemDone', (_obj, item) => {
// Item
item.itemType = 'preprint';
// Use innerText instead of textContent (duplicated LaTeX)
let title = innerText(doc, 'h1.entry-title');
if (title) {
item.title = ZU.capitalizeTitle(title);
}
let tags = doc.querySelectorAll('div.entry-meta > span.tags-links > a[rel="tag"]');
for (let tag of tags) {
item.tags.push(ZU.cleanTags(tag.text));
}
// Use innerText instead of textContent (duplicated LaTeX)
let abstractNote = innerText(doc, 'div.entry-content > div > p');
if (abstractNote) {
item.abstractNote = ZU.trimInternal(abstractNote);
}
// Attachment
let attachmentUrl = attr(doc, '.entry-content a[href*="/wp-content/uploads/"]', 'href');
item.attachments = [];
if (attachmentUrl.length) {
item.attachments.push({
title: 'Full Text PDF',
mimeType: 'application/pdf',
url: attachmentUrl,
});
}
// Archive
item.publisher = 'Optimization Online'; // repository
item.libraryCatalog = 'optimization-online.org';
let archiveID = attr(doc, 'article', 'id');
if (archiveID) {
item.archiveID = archiveID.split('-')[1];
}
let shortUrl = doc.querySelector('span.shorturl > a').href;
if (shortUrl) {
item.url = shortUrl;
}
item.complete();
});
let em = await translator.getTranslatorObject();
await em.doWeb(doc, url);
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://optimization-online.org/2023/05/political-districting-to-optimize-the-polsby-popper-compactness-score/",
"detectedItemType": "preprint",
"items": [
{
"itemType": "preprint",
"title": "Political districting to optimize the Polsby-Popper compactness score",
"creators": [
{
"firstName": "Pietro",
"lastName": "Belotti",
"creatorType": "author"
},
{
"firstName": "Austin",
"lastName": "Buchanan",
"creatorType": "author"
},
{
"firstName": "Soraya",
"lastName": "Ezazipour",
"creatorType": "author"
}
],
"date": "2023-05-19",
"abstractNote": "In the academic literature and in expert testimony, the Polsby-Popper score is the most popular way to measure the compactness of a political district. Given a district with area A and perimeter P, its Polsby-Popper score is given by (4 \\pi A)/P^2. This score takes values between zero and one, with circular districts achieving a perfect score of one. In this paper, we propose the first mathematical optimization models to draw districts with optimum Polsby-Popper score. Specifically, we propose new mixed-integer second-order cone programs (MISOCPs), which can be solved with existing optimization software. We investigate their tractability by applying them to real-life districting instances in the USA. Experiments show that they are able to: (i) identify the most compact majority-minority districts at the tract level; (ii) identify the most compact districting plans at the county level; and (iii) refine existing tract-level plans to make them substantially more compact. Our techniques could be used by plaintiffs when seeking to overturn maps that dilute the voting strength of minority groups. Our python code and results are publicly available on GitHub.",
"archiveID": "23021",
"language": "en-US",
"libraryCatalog": "optimization-online.org",
"repository": "Optimization Online",
"url": "https://optimization-online.org/?p=23021",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "MINLP"
},
{
"tag": "districting"
},
{
"tag": "misocp"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://optimization-online.org/2023/06/mind-the-tildeo-asymptotically-better-but-still-impractical-quantum-distributed-algorithms/",
"detectedItemType": "preprint",
"items": [
{
"itemType": "preprint",
"title": "Mind the \\tilde{O}: asymptotically better, but still impractical, quantum distributed algorithms",
"creators": [
{
"firstName": "David E. Bernal",
"lastName": "Neira",
"creatorType": "author"
}
],
"date": "2023-06-22",
"archiveID": "23283",
"language": "en-US",
"libraryCatalog": "optimization-online.org",
"repository": "Optimization Online",
"shortTitle": "Mind the \\tilde{O}",
"url": "https://optimization-online.org/?p=23283",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "Directed Minimum Spanning Tree"
},
{
"tag": "complexity"
},
{
"tag": "distributed computing"
},
{
"tag": "quantum computing"
},
{
"tag": "steiner tree"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://optimization-online.org/2023/05/maximum-likelihood-probability-measures-over-sets-and-applications-to-data-driven-optimization/",
"detectedItemType": "preprint",
"items": [
{
"itemType": "preprint",
"title": "Maximum Likelihood Probability Measures over Sets and Applications to Data-Driven Optimization",
"creators": [
{
"firstName": "Juan",
"lastName": "Borrero",
"creatorType": "author"
},
{
"firstName": "Denis",
"lastName": "Saure",
"creatorType": "author"
}
],
"date": "2023-05-15",
"archiveID": "22948",
"language": "en-US",
"libraryCatalog": "optimization-online.org",
"repository": "Optimization Online",
"url": "https://optimization-online.org/?p=22948",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "data-driven decision making"
},
{
"tag": "distributionally robust optimization"
},
{
"tag": "maximum likelihood estimation"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://optimization-online.org/2023/05/modeling-risk-for-cvar-based-decisions-in-risk-aggregation/",
"detectedItemType": "preprint",
"items": [
{
"itemType": "preprint",
"title": "Modeling risk for CVaR-based decisions in risk aggregation",
"creators": [
{
"firstName": "Yuriy",
"lastName": "Zinchenko",
"creatorType": "author"
}
],
"date": "2023-05-08",
"abstractNote": "Download",
"archiveID": "22890",
"language": "en-US",
"libraryCatalog": "optimization-online.org",
"repository": "Optimization Online",
"url": "https://optimization-online.org/?p=22890",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://optimization-online.org/2018/03/6538/",
"detectedItemType": "preprint",
"items": [
{
"itemType": "preprint",
"title": "Discretization-based algorithms for generalized semi-infinite and bilevel programs with coupling equality constraints",
"creators": [
{
"firstName": "Hatim",
"lastName": "Djelassi",
"creatorType": "author"
},
{
"firstName": "Alexander",
"lastName": "Mitsos",
"creatorType": "author"
},
{
"firstName": "Moll",
"lastName": "Glass",
"creatorType": "author"
}
],
"date": "2018-03-22",
"archiveID": "15107",
"language": "en-US",
"libraryCatalog": "optimization-online.org",
"repository": "Optimization Online",
"url": "https://optimization-online.org/?p=15107",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://optimization-online.org/tag/affine-recourse-adaptation/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/author/melvynsim/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/category/robust-optimization/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/07/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/7/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/07/1/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/7/01/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/7/1/",
"detectedItemType": "multiple",
"items": "multiple"
},
{
"type": "web",
"url": "https://optimization-online.org/2022/07/01/",
"detectedItemType": "multiple",
"items": "multiple"
}
]
/** END TEST CASES **/