parent
dfe493d9d8
commit
23d898c86b
1 changed files with 7 additions and 0 deletions
|
|
@ -1104,6 +1104,13 @@ inductive Relation.TransGen {α : Sort u} (r : α → α → Prop) : α → α
|
|||
/-- Deprecated synonym for `Relation.TransGen`. -/
|
||||
@[deprecated Relation.TransGen (since := "2024-07-16")] abbrev TC := @Relation.TransGen
|
||||
|
||||
theorem Relation.TransGen.trans {α : Sort u} {r : α → α → Prop} {a b c} :
|
||||
TransGen r a b → TransGen r b c → TransGen r a c := by
|
||||
intro hab hbc
|
||||
induction hbc with
|
||||
| single h => exact TransGen.tail hab h
|
||||
| tail _ h ih => exact TransGen.tail ih h
|
||||
|
||||
/-! # Subtype -/
|
||||
|
||||
namespace Subtype
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue