Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 7b78d17

Browse files
committed
chore(group_theory/presented_group): generalize universe (#18115)
closes #18114
1 parent 09d74fa commit 7b78d17

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/group_theory/presented_group.lean

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ given by generators `x : α` and relations `r ∈ rels`.
2525
generators, relations, group presentations
2626
-/
2727

28-
variables {α : Type}
28+
variables {α : Type*}
2929

3030
/-- Given a set of relations, rels, over a type `α`, presented_group constructs the group with
3131
generators `x : α` and relations `rels` as a quotient of free_group `α`.-/
32-
def presented_group (rels : set (free_group α)) : Type :=
32+
def presented_group (rels : set (free_group α)) :=
3333
free_group α ⧸ subgroup.normal_closure rels
3434

3535
namespace presented_group
@@ -50,7 +50,7 @@ the images of `f` satisfy all the given relations, then `f` extends uniquely to
5050
from `presented_group rels` to `G`.
5151
-/
5252

53-
variables {G : Type} [group G] {f : α → G} {rels : set (free_group α)}
53+
variables {G : Type*} [group G] {f : α → G} {rels : set (free_group α)}
5454

5555
local notation `F` := free_group.lift f
5656

0 commit comments

Comments
 (0)