reactor: Removal of double spaces

This commit is contained in:
jstoobysmith 2024-07-12 11:23:02 -04:00
parent ce92e1d649
commit 13f62a50eb
64 changed files with 550 additions and 546 deletions

View file

@ -197,7 +197,7 @@ instance quadSolsMulAction (χ : ACCSystemQuad) : MulAction χ.QuadSols wher
exact one_smul _ _
/-- The inclusion of quadratic solutions into linear solutions. -/
def quadSolsInclLinSols (χ : ACCSystemQuad) : χ.QuadSols →[] χ.LinSols where
def quadSolsInclLinSols (χ : ACCSystemQuad) : χ.QuadSols →[] χ.LinSols where
toFun := QuadSols.toLinSols
map_smul' _ _ := rfl
@ -229,7 +229,7 @@ structure Sols (χ : ACCSystem) extends χ.QuadSols where
/-- Two solutions are equal if the underlying charges are equal. -/
lemma Sols.ext {χ : ACCSystem} {S T : χ.Sols} (h : S.val = T.val) :
S = T := by
have h := ACCSystemQuad.QuadSols.ext h
have h := ACCSystemQuad.QuadSols.ext h
cases' S
simp_all only
@ -251,8 +251,8 @@ instance solsMulAction (χ : ACCSystem) : MulAction χ.Sols where
exact one_smul _ _
/-- The inclusion of `Sols` into `QuadSols`. -/
def solsInclQuadSols (χ : ACCSystem) : χ.Sols →[] χ.QuadSols where
toFun := Sols.toQuadSols
def solsInclQuadSols (χ : ACCSystem) : χ.Sols →[] χ.QuadSols where
toFun := Sols.toQuadSols
map_smul' _ _ := rfl
/-- The inclusion of `Sols` into `LinSols`. -/