Skip to content

Commit 40d3b0f

Browse files
committed
trying different version of ubuntu for CI
1 parent fe05313 commit 40d3b0f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/programming_team_code_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
# https://stackoverflow.com/a/76359456
1111
strategy:
1212
fail-fast: false
13-
runs-on: ubuntu-latest
13+
# https://github.com/actions/runner-images/issues/6709#issuecomment-1441444332
14+
runs-on: ubuntu-20.04
1415
steps:
1516
- uses: actions/checkout@v1
1617
- name: Set up Python

library/trees/ladder_decomposition/linear_kth_par.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ template<int KAPPA = 2> struct linear_kth_par {
2626
t++;
2727
};
2828
auto dfs = [&](auto&& self, int v, int p) -> void {
29-
st[d[v]] = v;
30-
int& l = leaf[v] = v;
29+
int& l = leaf[v] = st[d[v]] = v;
3130
pos[v] = t;
3231
calc(d[v]);
3332
for (int u : adj[v])

0 commit comments

Comments
 (0)