Skip to content

Commit 4e384a8

Browse files
committed
add papers
1 parent ce3b736 commit 4e384a8

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

papers/Bampis25polynomial.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
title: Polynomial Time Learning-Augmented Algorithms for NP-hard Permutation Problems
2-
authors: null
2+
authors: Bampis, Escoffier, Fotakis, Patsilinakos, Xefteris
33
labels:
44
- approximation
55
- auctions
66
- graph problems
77
- scheduling
88
- routing / TSP
9-
publications: []
9+
publications:
10+
- name: arXiv
11+
url: https://arxiv.org/abs/2502.00841
12+
year: 2025
13+
month: 2
14+
day: 2
15+
dblp_key: null
16+
bibtex: null

papers/Shen25calibrated.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
title: Algorithms with Calibrated Machine Learning Predictions
2+
authors: Shen, Vitercik, Wikum
3+
labels:
4+
- online
5+
- rent-or-buy
6+
- scheduling
7+
publications:
8+
- name: arXiv
9+
url: https://arxiv.org/abs/2502.02861
10+
year: 2025
11+
month: 2
12+
day: 5
13+
dblp_key: null
14+
bibtex: null

updater/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
221221

222222
println!("Updating {}", paper.title);
223223

224-
update_paper_from_arxiv(&mut paper, 5).await?;
224+
update_paper_from_arxiv(&mut paper, 4).await?;
225225
//update_paper_from_dblp(&mut paper, 5).await?;
226226

227227
let file = std::fs::File::create(entry.path())?;
228228
let mut writer = BufWriter::new(file);
229229
serde_yml::to_writer(&mut writer, &paper)?;
230230
writer.flush()?;
231-
sleep(Duration::from_millis(1000)).await;
231+
sleep(Duration::from_millis(100)).await;
232232
}
233233

234234
Ok(())

0 commit comments

Comments
 (0)