Skip to content

Commit

Permalink
feat(set_theory/game/pgame): lt_or_equiv_or_gf (#14407)
Browse files Browse the repository at this point in the history
  • Loading branch information
vihdzp committed May 30, 2022
1 parent 59a1a50 commit 08c1412
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/set_theory/game/pgame.lean
Expand Up @@ -651,6 +651,12 @@ begin
{ right, right, right, exact ⟨h₂, h₁⟩ }
end

theorem lt_or_equiv_or_gf (x y : pgame) : x < y ∨ x ≈ y ∨ y ⧏ x :=
begin
rw [lf_iff_lt_or_fuzzy, fuzzy.swap_iff],
exact lt_or_equiv_or_gt_or_fuzzy x y
end

/-- `restricted x y` says that Left always has no more moves in `x` than in `y`,
and Right always has no more moves in `y` than in `x` -/
inductive restricted : pgame.{u} → pgame.{u} → Type (u+1)
Expand Down

0 comments on commit 08c1412

Please sign in to comment.