From 8e180758332a877c4e7eff475e5f921192b913b9 Mon Sep 17 00:00:00 2001 From: Atulbedwal <76045376+Atulbedwal@users.noreply.github.com> Date: Tue, 25 Jun 2024 00:57:42 +0530 Subject: [PATCH] Update strong-orientation.md --- src/graph/strong-orientation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/strong-orientation.md b/src/graph/strong-orientation.md index 50397b287..69a7b37d9 100644 --- a/src/graph/strong-orientation.md +++ b/src/graph/strong-orientation.md @@ -78,7 +78,7 @@ void find_bridges(int v) { bridge_cnt++; } } else { - low[v] = min(low[v], low[nv]); + low[v] = min(low[v], tin[nv]); } } }