Uses of Interface
com.gengoai.graph.EdgeFactory
-
Packages that use EdgeFactory Package Description com.gengoai.graph -
-
Uses of EdgeFactory in com.gengoai.graph
Classes in com.gengoai.graph that implement EdgeFactory Modifier and Type Class Description class
DirectedEdgeFactory<V>
Edge factory forDirectedEdge
sclass
UndirectedEdgeFactory<V>
Factory for creating undirected edges.Methods in com.gengoai.graph that return EdgeFactory Modifier and Type Method Description EdgeFactory<V>
DefaultGraphImpl. getEdgeFactory()
EdgeFactory<V>
Graph. getEdgeFactory()
Gets the edge factory used in this grapyMethods in com.gengoai.graph with parameters of type EdgeFactory Modifier and Type Method Description static <V> Graph<V>
Graph. create(EdgeFactory<V> edgeFactory)
Creates a graph with verticesV
and edges defined by the givenEdgeFactory
.Edge<V>
EdgeMergeFunction. merge(Edge<V> originalEdge, Edge<V> duplicateEdge, EdgeFactory<V> factory)
Merges the information related to two edges defined over the same vertices creating a new edge.Constructors in com.gengoai.graph with parameters of type EdgeFactory Constructor Description DefaultGraphImpl(EdgeFactory<V> edgeFactory)
Instantiates a new Adjacency matrix.
-