Uses of Class
org.graph4j.SimpleGraphAlgorithm
Packages that use SimpleGraphAlgorithm
Package
Description
Clique related algorithms, such as enumerating all maximal cliques of a graph.
Algorithms for the bandwith graph coloring problem.
Algorithms for the equitable graph coloring problem.
Algorithms for analyzing connectivity of graphs and digraphs.
Algorithms for determining matchings, such as the maximum cardinality matching in bipartite graphs.
Algorithms that produce various orderings of the vertices of a graph.
Support algorithms for various type of graphs (bipartite, tournament, etc.).
Algorithms for the Vertex Separator Problem (VSP).
-
Uses of SimpleGraphAlgorithm in org.graph4j.clique
Subclasses of SimpleGraphAlgorithm in org.graph4j.cliqueModifier and TypeClassDescriptionclassIterates over all cliques in a graph in a BFS manner.classDeprecated.classDeprecated.classIterates over all the maximal cliques of a graph.classIterates over all cliques in a graph in a DFS manner.classComputes a maximal clique. -
Uses of SimpleGraphAlgorithm in org.graph4j.coloring
Subclasses of SimpleGraphAlgorithm in org.graph4j.coloringModifier and TypeClassDescriptionclassAttempts at finding the optimum coloring of a graph using a systematic exploration of the search space.classAttempts at finding the optimum coloring of a graph using a systematic exploration of the search space.classclassBase class for exact vertex coloring algorithms.classclassGreedy coloring is a simple heuristic algorithm that assigns colors to the vertices of a graph in a greedy manner, that is, by selecting the smallest possible color that has not yet been used by any of the neighboring vertices.classclassclassclass -
Uses of SimpleGraphAlgorithm in org.graph4j.coloring.bw
Subclasses of SimpleGraphAlgorithm in org.graph4j.coloring.bwModifier and TypeClassDescriptionclassAttempts at finding an optimum bandwith coloring of a graph using a systematic exploration of the search space.class -
Uses of SimpleGraphAlgorithm in org.graph4j.coloring.eq
Subclasses of SimpleGraphAlgorithm in org.graph4j.coloring.eqModifier and TypeClassDescriptionclassAttempts at finding an optimum equitable coloring of the vertices of a graph using a systematic exploration of the search space.classCreates an equitable coloring in a greedy manner. -
Uses of SimpleGraphAlgorithm in org.graph4j.connectivity
Subclasses of SimpleGraphAlgorithm in org.graph4j.connectivityModifier and TypeClassDescriptionclassA bridge in an undirected graph is defined as an edge which, when removed, increases the number of connected components in the graph).classDetermines the connected components of a graph.classProvides a method to find the minimum weighted cut of an undirected graph using the Stoer-Wagner algorithm.classProvides a method to find the minimum weighted cut of an undirected graph using the Stoer-Wagner algorithm.classProvides a method to find the minimum weighted cut of an undirected graph using the Stoer-Wagner algorithm.classProvides a method to find the minimum weighted cut of an undirected graph using the Stoer-Wagner algorithm.classThe algorithm for computing biconnected components in a connected undirected graph is due to John Hopcroft and Robert Tarjan (1973). -
Uses of SimpleGraphAlgorithm in org.graph4j.converters
Subclasses of SimpleGraphAlgorithm in org.graph4j.converters -
Uses of SimpleGraphAlgorithm in org.graph4j.hamiltonian
Subclasses of SimpleGraphAlgorithm in org.graph4j.hamiltonianModifier and TypeClassDescriptionclassThe algorithm finds a Hamiltonian cycle in an undirected simple graph that satisfies Ore's condition:deg(v) + deg(u) >= |V(G)|, for every pair of distinct non-adjacent vertices v and u. -
Uses of SimpleGraphAlgorithm in org.graph4j.matching
Subclasses of SimpleGraphAlgorithm in org.graph4j.matchingModifier and TypeClassDescriptionclassTODO Goldberg, p.95classComputes the maximum cardinality matching in a bipartite graph. -
Uses of SimpleGraphAlgorithm in org.graph4j.ordering
Subclasses of SimpleGraphAlgorithm in org.graph4j.orderingModifier and TypeClassDescriptionclassAn acyclic orientation of an undirected graph is an assignment of a direction to each edge (an orientation) that does not form any directed cycle and therefore makes it into a directed acyclic graph. -
Uses of SimpleGraphAlgorithm in org.graph4j.support
Subclasses of SimpleGraphAlgorithm in org.graph4j.support -
Uses of SimpleGraphAlgorithm in org.graph4j.vsp
Subclasses of SimpleGraphAlgorithm in org.graph4j.vspModifier and TypeClassDescriptionclassWORK IN PROGRESS.classclassThe vertex separator problem (VSP) is to find a partition of V into nonempty three classes A, B, C such that there is no edge between A and B,max(|A|,|B|) <= f(n)and|C|is minimum.