Uses of Class
org.jgrapht.alg.flow.MaximumFlowAlgorithmBase.VertexExtensionBase
-
Packages that use MaximumFlowAlgorithmBase.VertexExtensionBase Package Description org.jgrapht.alg.flow Flow related algorithms. -
-
Uses of MaximumFlowAlgorithmBase.VertexExtensionBase in org.jgrapht.alg.flow
Subclasses of MaximumFlowAlgorithmBase.VertexExtensionBase in org.jgrapht.alg.flow Modifier and Type Class Description private class
BoykovKolmogorovMFImpl.VertexExtension
Network vertex extension used to store auxiliary vertex information.(package private) class
DinicMFImpl.VertexExtension
Extension for vertex class.(package private) class
EdmondsKarpMFImpl.VertexExtension
class
PushRelabelMFImpl.VertexExtension
Vertex extension for the push-relabel algorithm, which contains an additional height.Fields in org.jgrapht.alg.flow declared as MaximumFlowAlgorithmBase.VertexExtensionBase Modifier and Type Field Description private MaximumFlowAlgorithmBase.VertexExtensionBase
MaximumFlowAlgorithmBase.AnnotatedFlowEdge. source
private MaximumFlowAlgorithmBase.VertexExtensionBase
MaximumFlowAlgorithmBase.AnnotatedFlowEdge. target
Fields in org.jgrapht.alg.flow with type parameters of type MaximumFlowAlgorithmBase.VertexExtensionBase Modifier and Type Field Description protected ExtensionManager<V,? extends MaximumFlowAlgorithmBase.VertexExtensionBase>
MaximumFlowAlgorithmBase. vertexExtensionManager
Methods in org.jgrapht.alg.flow with type parameters of type MaximumFlowAlgorithmBase.VertexExtensionBase Modifier and Type Method Description <VE extends MaximumFlowAlgorithmBase.VertexExtensionBase>
VEMaximumFlowAlgorithmBase.AnnotatedFlowEdge. getSource()
<VE extends MaximumFlowAlgorithmBase.VertexExtensionBase>
VEMaximumFlowAlgorithmBase.AnnotatedFlowEdge. getTarget()
protected <VE extends MaximumFlowAlgorithmBase.VertexExtensionBase>
voidMaximumFlowAlgorithmBase. init(V source, V sink, ExtensionFactory<VE> vertexExtensionFactory, ExtensionFactory<MaximumFlowAlgorithmBase.AnnotatedFlowEdge> edgeExtensionFactory)
Prepares all data structures to start a new invocation of the Maximum Flow or Minimum Cut algorithmsMethods in org.jgrapht.alg.flow with parameters of type MaximumFlowAlgorithmBase.VertexExtensionBase Modifier and Type Method Description private MaximumFlowAlgorithmBase.AnnotatedFlowEdge
MaximumFlowAlgorithmBase. createEdge(MaximumFlowAlgorithmBase.VertexExtensionBase source, MaximumFlowAlgorithmBase.VertexExtensionBase target, E e, double weight)
void
MaximumFlowAlgorithmBase.AnnotatedFlowEdge. setSource(MaximumFlowAlgorithmBase.VertexExtensionBase source)
void
MaximumFlowAlgorithmBase.AnnotatedFlowEdge. setTarget(MaximumFlowAlgorithmBase.VertexExtensionBase target)
-