Uses of Interface
org.jgrapht.alg.util.extension.ExtensionFactory
-
Packages that use ExtensionFactory Package Description org.jgrapht.alg.flow Flow related algorithms.org.jgrapht.alg.util.extension Utility classes for managing extensions/encapsulations. -
-
Uses of ExtensionFactory in org.jgrapht.alg.flow
Fields in org.jgrapht.alg.flow declared as ExtensionFactory Modifier and Type Field Description private ExtensionFactory<MaximumFlowAlgorithmBase.AnnotatedFlowEdge>
EdmondsKarpMFImpl. edgeExtensionsFactory
private ExtensionFactory<MaximumFlowAlgorithmBase.AnnotatedFlowEdge>
PushRelabelMFImpl. edgeExtensionsFactory
private ExtensionFactory<EdmondsKarpMFImpl.VertexExtension>
EdmondsKarpMFImpl. vertexExtensionsFactory
private ExtensionFactory<PushRelabelMFImpl.VertexExtension>
PushRelabelMFImpl. vertexExtensionsFactory
Methods in org.jgrapht.alg.flow with parameters of type ExtensionFactory Modifier and Type Method Description 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 algorithms -
Uses of ExtensionFactory in org.jgrapht.alg.util.extension
Fields in org.jgrapht.alg.util.extension declared as ExtensionFactory Modifier and Type Field Description private ExtensionFactory<B>
ExtensionManager. extensionFactory
Constructors in org.jgrapht.alg.util.extension with parameters of type ExtensionFactory Constructor Description ExtensionManager(ExtensionFactory<B> factory)
Create a new extension manager.
-