definition
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
An outerplanar graph is maximal outerplanar when no edge can be added between its existing vertices while preserving outerplanarity.
Lean source view on GitHub
| 1 | import Lax68.Outerplanar |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Maximal outerplanar graphs |
| 6 | type: definition |
| 7 | --- |
| 8 | An outerplanar graph is maximal outerplanar when no edge can be added between |
| 9 | its existing vertices while preserving outerplanarity. |
| 10 | -/ |
| 11 | |
| 12 | set_option autoImplicit false |
| 13 | |
| 14 | namespace Lax68.MaximalOuterplanar |
| 15 | |
| 16 | def IsMaximalOuterplanar {V : Type*} |
| 17 | (G : SimpleGraph V) : Prop := |
| 18 | Outerplanar.IsOuterplanar G ∧ |
| 19 | ∀ H : SimpleGraph V, |
| 20 | G < H → |
| 21 | ¬ Outerplanar.IsOuterplanar H |
| 22 | |
| 23 | end Lax68.MaximalOuterplanar |
| 24 |
Builds on
Used by
From Mathlib
none
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