From 1d35821d84c158b58eab5b02185b68219c38a332 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Tue, 27 Feb 2024 13:41:27 +0100 Subject: cylces -> cycles --- graph/cycleCounting.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/cycleCounting.cpp b/graph/cycleCounting.cpp index 9772706..0df464b 100644 --- a/graph/cycleCounting.cpp +++ b/graph/cycleCounting.cpp @@ -1,12 +1,12 @@ constexpr int maxEdges = 128; using cycle = bitset; -struct cylces { +struct cycles { vector>> adj; vector seen; vector paths, base; vector> edges; - cylces(int n) : adj(n), seen(n), paths(n) {} + cycles(int n) : adj(n), seen(n), paths(n) {} void addEdge(int u, int v) { adj[u].push_back({v, sz(edges)}); -- cgit v1.2.3