- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
- All Known Implementing Classes:
DenseEdmondsMaximumCardinalityMatching
,GreedyMaximumCardinalityMatching
,GreedyWeightedMatching
,HopcroftKarpMaximumCardinalityBipartiteMatching
,KolmogorovWeightedMatching
,KolmogorovWeightedPerfectMatching
,KuhnMunkresMinimalWeightBipartitePerfectMatching
,MaximumWeightBipartiteMatching
,PathGrowingWeightedMatching
,SparseEdmondsMaximumCardinalityMatching
public interface MatchingAlgorithm<V,E>
Allows to derive a matching of
a given graph.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
A graph matching.static class
A default implementation of the matching interface. -
Field Summary
Modifier and TypeFieldDescriptionstatic final double
Default tolerance used by algorithms comparing floating point values. -
Method Summary
Modifier and TypeMethodDescriptionCompute a matching for a given graph.
-
Field Details
-
DEFAULT_EPSILON
static final double DEFAULT_EPSILONDefault tolerance used by algorithms comparing floating point values.- See Also:
-
-
Method Details
-
getMatching
MatchingAlgorithm.Matching<V,E> getMatching()Compute a matching for a given graph.- Returns:
- a matching
-