Skip to content

Commit 3ebc498

Browse files
Merge branch 'main' into patch-1
2 parents e24c674 + c7999c0 commit 3ebc498

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v5.2.0
2121
with:
22-
python-version: '3.8'
22+
python-version: '3.11'
2323
- name: Install mkdocs-material
2424
run: |
2525
scripts/install-mkdocs.sh

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ theme:
2222
icon:
2323
repo: fontawesome/brands/github
2424
features:
25-
- navigation.tabs
2625
- toc.integrate
2726
- search.suggest
2827
- content.code.copy
@@ -57,6 +56,8 @@ markdown_extensions:
5756
permalink: true
5857

5958
plugins:
59+
- toggle-sidebar:
60+
toggle_button: all
6061
- mkdocs-simple-hooks:
6162
hooks:
6263
on_env: "hooks:on_env"

scripts/install-mkdocs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
pip install \
44
"mkdocs-material>=9.0.2" \
5+
mkdocs-toggle-sidebar-plugin \
56
mkdocs-macros-plugin \
67
mkdocs-literate-nav \
78
mkdocs-git-authors-plugin \

src/graph/strong-orientation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void find_bridges(int v) {
7878
bridge_cnt++;
7979
}
8080
} else {
81-
low[v] = min(low[v], low[nv]);
81+
low[v] = min(low[v], tin[nv]);
8282
}
8383
}
8484
}

0 commit comments

Comments
 (0)