application: matroid
Matroids encode the concept of "(in)dependence" in an abstract way. You can define matroids via vector configurations or graphs, do basic conversions between different descriptions and perform basic operations such as deletions and contractions.
uses: group, ideal, polytope, topaz
Objects
A matroid on the set {0,...,n-1}. Here n is the same as N_ELEMENTS.
Properties of Matroid
- BASES: common::Array<Set<Int>>
Subsets of the ground set which form the bases of the matroid. Note that if you want to define a matroid via its bases, you should also specify N_ELEMENTS, because we allow matroids with loops.
- BINARY_POINTS: common::Matrix<Rational, NonSymmetric>
If the matroid is realizable over the field GF(2) with two elements, this property contains coordinates for some realization.
- COCIRCUITS: common::Array<Set<Int>>
Cocircuits (or bonds) of the matroid, i.e., minimal sets intersecting every basis.
- LABELS: common::Array<String>
Unique names assigned to the elements of the matroid.
For a matroid build from scratch, you should create this property by yourself. If you build the matroid with a construction client, (e.g. matroid_from_graph) the labels may be assigend for you in a meaningful way.
- NON_BASES: common::Array<Set<Int>>
All subsets of the ground sets with cardinality RANK that are not bases.
- N_ELEMENTS: common::Int
Size of the ground set. The ground set itself always consists of the first integers starting with zero.
- POINTS: common::Matrix<Rational, NonSymmetric>
If the matroid is realizable over the rationals, this property contains coordinates for some realization. Specifying coordinates is one way to define a matroid.
- POLYTOPE: polytope::Polytope<Rational>
Polytope whose vertices are the characteristic vectors of the bases.
- REGULAR: common::Bool
Whether the matroid is representable over every field, that is the repesentation is unimodular.
- TERNARY_POINTS: common::Matrix<Rational, NonSymmetric>
If the matroid is realizable over the field GF(3) with three elements, this property contains coordinates for some realization.
User Functions
- UNDOCUMENTED
- contraction (m, element) → Matroid
- UNDOCUMENTED
- fano_matroid () → Matroid
- matroid_from_characteristic_vector (v, r, n) → Matroid
Creates the matroid with a given characteristic-plueckervector of rank r and a ground set of n elements.
- matroid_from_graph (g) → Matroid
- matroid_from_matroid_polytope (p) → Matroid
Creates a matroid from the corresponding matroid polytope p.
- projective_plane (p) → Matroid
- uniform_matroid (r, n) → Matroid
- UNDOCUMENTED
- matroid_plueckervector (m) → ListReturn
Creates the characteristic- and the rank-plueckervector of a matroid.