Lax17.TreewidthMinorMonotonicity
Treewidth monotonicity under graph minors
concepts/Lax17/TreewidthMinorMonotonicity.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
Taking a graph minor cannot increase treewidth.
Lean source view on GitHub
| 1 | import Lax17.Minor |
| 2 | import Lax17.Treewidth |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Treewidth monotonicity under graph minors |
| 7 | type: theorem |
| 8 | --- |
| 9 | Taking a graph minor cannot increase treewidth. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax17.TreewidthMinorMonotonicity |
| 13 | |
| 14 | universe u |
| 15 | |
| 16 | /-- Taking a graph minor cannot increase treewidth. -/ |
| 17 | axiom treewidth_mono_minor : |
| 18 | ∀ {V W : Type u} [Fintype V] [DecidableEq V] |
| 19 | [Fintype W] [DecidableEq W] |
| 20 | (G : SimpleGraph V) (H : SimpleGraph W), |
| 21 | Lax17.Minor.IsMinor H G → |
| 22 | Lax17.Treewidth.treewidth H ≤ Lax17.Treewidth.treewidth G |
| 23 | |
| 24 | end Lax17.TreewidthMinorMonotonicity |
| 25 |
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