Skip to content

Commit b6417f5

Browse files
committed
docs(Combinatorics/SimpleGraph/Automorphism): drop over-documented small lemmas
Remove docstrings on `Copy.toSubgraph_comp_iso`, `Copy.comp_toCopy_injective`, and their Embedding mirrors. The names (`toSubgraph_comp_iso`, `comp_toCopy_injective` / `comp_toEmbedding_injective`) and signatures are self-evident; the docstrings just restated them in prose. Other docstrings (`Aut`, `autCount`, the `fiber*` defs, the `equiv*` packagings, and the two `**Orbit-stabiliser**`-tagged main theorems) all add content over their names and stay.
1 parent b4db813 commit b6417f5

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

Mathlib/Combinatorics/SimpleGraph/Automorphism.lean

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,9 @@ lemma one_le_autCount [Finite V] : 1 ≤ G.autCount := autCount_pos
6363

6464
namespace Copy
6565

66-
/-- Precomposing a copy by an automorphism of the guest does not change the image subgraph. -/
6766
lemma toSubgraph_comp_iso (f : Copy G H) (σ : G.Aut) :
6867
(f.comp σ.toCopy).toSubgraph = f.toSubgraph := by simp
6968

70-
/-- Precomposition with automorphisms of the guest is injective on copies. -/
7169
lemma comp_toCopy_injective (f : Copy G H) :
7270
Injective fun σ : G.Aut ↦ f.comp σ.toCopy := fun σ₁ σ₂ h ↦ by
7371
ext v; simpa using DFunLike.congr_fun h v
@@ -118,11 +116,9 @@ end Copy
118116

119117
namespace Embedding
120118

121-
/-- Precomposing an embedding by an automorphism of the guest does not change the image subgraph. -/
122119
lemma toSubgraph_comp_iso (f : Embedding G H) (σ : G.Aut) :
123120
(f.comp σ.toEmbedding).toSubgraph = f.toSubgraph := by simp
124121

125-
/-- Precomposition with automorphisms of the guest is injective on embeddings. -/
126122
lemma comp_toEmbedding_injective (f : Embedding G H) :
127123
Injective fun σ : G.Aut ↦ f.comp σ.toEmbedding := fun σ₁ σ₂ h ↦ by
128124
ext v; simpa using DFunLike.congr_fun h v

0 commit comments

Comments
 (0)