Skip to content

Commit eb3583d

Browse files
committed
shortened Completion.induction_on to induction_on
1 parent 5682c65 commit eb3583d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Mathlib/Analysis/CStarAlgebra/GelfandNaimarkSegal.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,19 +154,19 @@ noncomputable def gnsNonUnitalStarAlgHom : A →⋆ₙₐ[ℂ] (f.GNS →L[ℂ]
154154
map_zero' := by simpa using f.gnsNonUnitalStarAlgHom_map_smul 0 0
155155
map_add' _ _ := by
156156
ext c
157-
induction c using Completion.induction_on with
157+
induction c using induction_on with
158158
| hp => apply isClosed_eq <;> fun_prop
159159
| ih c => simp [add_mul, Completion.coe_add]
160160
map_mul' _ _ := by
161161
ext c
162-
induction c using Completion.induction_on with
162+
induction c using induction_on with
163163
| hp => apply isClosed_eq <;> fun_prop
164164
| ih c => simp
165165
map_star' a := by
166166
refine (eq_adjoint_iff (f.leftMulMapPreGNS (star a)).completion
167167
(f.leftMulMapPreGNS a).completion).mpr ?_
168168
intro x y
169-
induction x, y using Completion.induction_on₂ with
169+
induction x, y using induction_on₂ with
170170
| hp => apply isClosed_eq <;> fun_prop
171171
| ih x y => simp [mul_assoc, preGNS_inner_def]
172172

@@ -184,7 +184,7 @@ set_option backward.isDefEq.respectTransparency false in
184184
@[simp]
185185
private lemma gnsNonUnitalStarAlgHom_map_one : f.gnsNonUnitalStarAlgHom 1 = 1 := by
186186
ext b
187-
induction b using Completion.induction_on with
187+
induction b using induction_on with
188188
| hp => apply isClosed_eq <;> fun_prop
189189
| ih b => simp [gnsNonUnitalStarAlgHom]
190190

Mathlib/Topology/Algebra/LinearMapCompletion.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ continuous linear map when the input is itself a continuous linear map.
3939
noncomputable def completion (f : α →SL[σ] β) : Completion α →SL[σ] Completion β where
4040
__ := f.toAddMonoidHom.completion f.continuous
4141
map_smul' r x := by
42-
induction x using Completion.induction_on with
42+
induction x using induction_on with
4343
| hp =>
4444
exact isClosed_eq (continuous_map.comp <| continuous_const_smul r)
4545
(continuous_map.const_smul _)

0 commit comments

Comments
 (0)