definition
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A triangulation of a graph G is a planar supergraph T on the same vertex set, with at least three vertices, to which no edge can be added while preserving planarity. For a plane embedding this is equivalent to every face of T being bounded by a triangle.
Lean source view on GitHub
| 1 | import Lax68.Planar |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Triangulations |
| 6 | type: definition |
| 7 | --- |
| 8 | A triangulation of a graph G is a planar supergraph T on the same vertex set, |
| 9 | with at least three vertices, to which no edge can be added while preserving |
| 10 | planarity. For a plane embedding this is equivalent to every face of T being |
| 11 | bounded by a triangle. |
| 12 | -/ |
| 13 | |
| 14 | set_option autoImplicit false |
| 15 | |
| 16 | namespace Lax68.Triangulations |
| 17 | |
| 18 | def IsTriangulationOf {V : Type*} |
| 19 | (G T : SimpleGraph V) : Prop := |
| 20 | (∃ a b c : V, a ≠ b ∧ a ≠ c ∧ b ≠ c) ∧ |
| 21 | G ≤ T ∧ |
| 22 | Planar.IsPlanar T ∧ |
| 23 | ∀ H : SimpleGraph V, |
| 24 | T < H → |
| 25 | ¬ Planar.IsPlanar H |
| 26 | |
| 27 | end Lax68.Triangulations |
| 28 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments