Skip to content

Commit

Permalink
make variable naming more consistent in recalls
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesGallicchio committed Jun 9, 2024
1 parent a6481d7 commit f7a232b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Lean/Geo.lean
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ i.e. the point set encloses a convex polygon. Also known as a "convex-independen
recall Geo.ConvexIndep (S : Set Point) : Prop :=
∀ a ∈ S, a ∉ convexHull ℝ (S \ {a})

recall Geo.HasConvexKGon (n : Nat) (S : Set Point) : Prop :=
s : Finset Point, s.card = n ∧ ↑sS ∧ ConvexIndep s
recall Geo.HasConvexKGon (n : Nat) (P : Set Point) : Prop :=
S : Finset Point, S.card = n ∧ ↑SP ∧ ConvexIndep S

recall Geo.HasEmptyKGon (n : Nat) (S : Set Point) : Prop :=
s : Finset Point, s.card = n ∧ ↑sS ∧ ConvexIndep s ∧ EmptyShapeIn s S
recall Geo.HasEmptyKGon (n : Nat) (P : Set Point) : Prop :=
S : Finset Point, S.card = n ∧ ↑SP ∧ ConvexIndep S ∧ EmptyShapeIn S P

/- `gonNumber k` is the smallest number `n` such that every set of `n` or more points
in general position contains a convex-independent set of size `k`. -/
Expand Down

0 comments on commit f7a232b

Please sign in to comment.