Uses of Class
com.jgalgo.alg.EdgeDirection
-
Packages that use EdgeDirection Package Description com.jgalgo.alg Algorithms for solving graph problems. -
-
Uses of EdgeDirection in com.jgalgo.alg
Methods in com.jgalgo.alg that return EdgeDirection Modifier and Type Method Description static EdgeDirection
EdgeDirection. valueOf(String name)
Returns the enum constant of this type with the specified name.static EdgeDirection[]
EdgeDirection. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.jgalgo.alg with parameters of type EdgeDirection Modifier and Type Method Description <V,E>
CoresAlgo.Result<V,E>CoresAlgo. computeCores(Graph<V,E> g, EdgeDirection degreeType)
Compute the cores of the graph with respect the given degree type.<V,E>
Set<V>DominatingSetAlgo. computeMinimumDominationSet(Graph<V,E> g, WeightFunction<V> w, EdgeDirection dominanceDirection)
Compute a minimum dominating set of the graph with respect to the given edges direction.static <V,E>
booleanDominatingSetAlgo. isDominatingSet(Graph<V,E> g, Collection<V> dominatingSet, EdgeDirection dominanceDirection)
Check whether a given set of vertices is a dominating set of a graph.
-