Skip to content

Commit

Permalink
fix(combinatorics/simple_graph/connectivity): correctly generalized v…
Browse files Browse the repository at this point in the history
…ariables (#13405)
  • Loading branch information
kmill committed Apr 13, 2022
1 parent 917fc96 commit b0bd771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/combinatorics/simple_graph/connectivity.lean
Expand Up @@ -57,10 +57,10 @@ walks, trails, paths, circuits, cycles
-/

universes u
universes u v

namespace simple_graph
variables {V V' : Type u} (G G' : simple_graph V)
variables {V : Type u} {V' : Type v} (G : simple_graph V) (G' : simple_graph V')

/-- A walk is a sequence of adjacent vertices. For vertices `u v : V`,
the type `walk u v` consists of all walks starting at `u` and ending at `v`.
Expand Down

0 comments on commit b0bd771

Please sign in to comment.