Module org.jgrapht.core
Package org.jgrapht.alg.interfaces
Class MatchingAlgorithm.MatchingImpl<V,E>
java.lang.Object
org.jgrapht.alg.interfaces.MatchingAlgorithm.MatchingImpl<V,E>
- Type Parameters:
V- the graph vertex typeE- the graph edge type
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<E>,MatchingAlgorithm.Matching<V,E>
- Enclosing interface:
- MatchingAlgorithm<V,E>
public static class MatchingAlgorithm.MatchingImpl<V,E> extends java.lang.Object implements MatchingAlgorithm.Matching<V,E>, java.io.Serializable
A default implementation of the matching interface.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description MatchingImpl(Graph<V,E> graph, java.util.Set<E> edges, double weight)Construct a new instance -
Method Summary
Modifier and Type Method Description java.util.Set<E>getEdges()Get the edges of the matching.Graph<V,E>getGraph()Returns the graph over which this matching is defined.doublegetWeight()Returns the weight of the matching.booleanisMatched(V v)Returns true if vertex v is incident to an edge in this matching.java.lang.StringtoString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.jgrapht.alg.interfaces.MatchingAlgorithm.Matching
isPerfect, iterator
-
Constructor Details
-
MatchingImpl
Construct a new instance- Parameters:
graph- graph on which the matching is definededges- the edges of the matchingweight- the weight of the matching
-
-
Method Details
-
getGraph
Description copied from interface:MatchingAlgorithm.MatchingReturns the graph over which this matching is defined.- Specified by:
getGraphin interfaceMatchingAlgorithm.Matching<V,E>- Returns:
- the graph
-
getWeight
public double getWeight()Returns the weight of the matching.- Specified by:
getWeightin interfaceMatchingAlgorithm.Matching<V,E>- Returns:
- the weight of the matching
-
getEdges
Get the edges of the matching.- Specified by:
getEdgesin interfaceMatchingAlgorithm.Matching<V,E>- Returns:
- the edges of the matching
-
isMatched
Returns true if vertex v is incident to an edge in this matching.- Specified by:
isMatchedin interfaceMatchingAlgorithm.Matching<V,E>- Parameters:
v- vertex- Returns:
- true if vertex v is incident to an edge in this matching.
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-