Package | Description |
---|---|
org.jgrapht.alg.interfaces |
Algorithm related interfaces.
|
org.jgrapht.alg.vertexcover |
Vertex cover algorithms.
|
Modifier and Type | Class and Description |
---|---|
static class |
MinimumVertexCoverAlgorithm.VertexCoverImpl<V>
Default implementation of a vertex cover
|
Modifier and Type | Method and Description |
---|---|
MinimumVertexCoverAlgorithm.VertexCover<V> |
MinimumVertexCoverAlgorithm.getVertexCover(UndirectedGraph<V,E> graph)
Computes a vertex cover; all vertices are considered to have equal weight.
|
default MinimumVertexCoverAlgorithm.VertexCover<V> |
MinimumWeightedVertexCoverAlgorithm.getVertexCover(UndirectedGraph<V,E> graph)
Computes a vertex cover; all vertices are considered to have equal weight.
|
MinimumVertexCoverAlgorithm.VertexCover<V> |
MinimumWeightedVertexCoverAlgorithm.getVertexCover(UndirectedGraph<V,E> graph,
Map<V,Double> vertexWeightMap)
Computes a vertex cover; the weight of each vertex is provided in the in the
vertexWeightMap . |
Copyright © 2016. All rights reserved.