Uses of Class
org.graph4j.util.StableSet
Packages that use StableSet
Package
Description
Graph generators of various kinds.
Algorithms for determining matchings, such as the maximum cardinality matching in bipartite graphs.
Support algorithms for various type of graphs (bipartite, tournament, etc.).
-
Uses of StableSet in org.graph4j.generators
Fields in org.graph4j.generators declared as StableSetMethods in org.graph4j.generators that return StableSetModifier and TypeMethodDescriptionRandomMultipartiteGenerator.getStableSets()Returns the stable sets of the multipartite graph. -
Uses of StableSet in org.graph4j.matching
Methods in org.graph4j.matching that return StableSetModifier and TypeMethodDescriptionHopcroftKarpMaximumMatching.getMaximumStableSet()niu(G) + alpha(G) = n.Constructors in org.graph4j.matching with parameters of type StableSetModifierConstructorDescriptionHopcroftKarpMaximumMatching(Graph graph, StableSet leftSide, StableSet rightSide) Creates an algorithm for determining a maximum matching in a bipartite graph. -
Uses of StableSet in org.graph4j.support
Methods in org.graph4j.support that return StableSetModifier and TypeMethodDescriptionBipartiteGraphSupport.getLeftSide()Returns the left side of the bipartition.BipartiteGraphSupport.getMaximumStableSet()Determines a maximum stable set in a bipartite graph, usingHopcroftKarpMaximumMatchingalgorithm.ChordalGraphSupport.getMaximumStableSet()Determines a maximum stable set of a chordal graph.BipartiteGraphSupport.getRightSide()Returns the right side of the bipartition.BipartiteGraphSupport.getSide(int v) Determines the stable set of the partition where a specified vertex belongs to.