Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Mathlib/Data/Matroid/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ namespace Matroid

variable {α : Type*} {M : Matroid α}

instance (M : Matroid α) : Nonempty {B // M.Base B} :=
nonempty_subtype.2 M.exists_base

/-- Typeclass for a matroid having finite ground set. Just a wrapper for `M.E.Finite`-/
@[mk_iff] protected class Finite (M : Matroid α) : Prop where
/-- The ground set is finite -/
Expand Down
Loading