Uses of Interface
org.graph4j.Multigraph
Packages that use Multigraph
Package
Description
The main interfaces and classes for representing and using graphs.
Graph generators of various kinds.
-
Uses of Multigraph in org.graph4j
Subinterfaces of Multigraph in org.graph4jModifier and TypeInterfaceDescriptioninterfaceDirectedMultigraph<V,E> Multiple (parallel) edges are allowed.interfaceDirectedPseudograph<V,E> Multiple (parallel) edges are allowed.interfacePseudograph<V,E> Self loops and multiple (parallel) edges are allowed.Methods in org.graph4j that return MultigraphModifier and TypeMethodDescriptionGraphBuilder.buildMultigraph()Builds an undirected graph, without self loops, allowing multiple edges between two vertices.Multigraph<V, E> Multigraph.copy()Multigraph<V, E> Graph.copyAsMultigraph()Creates and returns an identical copy of the graph, as aMultigraphobject.Multigraph<V, E> Graph.copyAsPseudograph()Creates and returns an identical copy of the graph, as aPseudographobject.Multigraph<V, E> Multigraph.subgraph(Collection<Edge> edges) Multigraph<V, E> Methods in org.graph4j with parameters of type MultigraphModifier and TypeMethodDescriptionstatic DirectedMultigraphGraphUtils.toDirectedMultigraph(Multigraph graph) -
Uses of Multigraph in org.graph4j.generators
Methods in org.graph4j.generators that return MultigraphModifier and TypeMethodDescriptionRandomGnmGraphGenerator.createMultiGraph()RandomGnpGraphGenerator.createMultiGraph()