Uses of Interface
repast.simphony.space.graph.Network
Package
Description
-
Uses of Network in repast.simphony.context.space.graph
Modifier and TypeMethodDescriptionNetworkBuilder.buildNetwork()
Builds the network using all the previously set properties.<T> Network<T>
DefaultNetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected) Creates a Network that will contain the specified class of objects.<T> Network<T>
DefaultNetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected, NetworkGenerator<T> generator, EdgeCreator<? extends RepastEdge<T>, T> edgeCreator) Creates a Network that will contain the specified class of objects.<T> Network<T>
DefaultNetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected, EdgeCreator<? extends RepastEdge<T>, T> edgeCreator) Creates a Network that will contain the specified class of objects.<T> Network<T>
DefaultNetworkFactory.createNetwork
(String netName, Context<T> context, NetworkGenerator<T> generator, boolean isDirected) Creates a Network that will contain the specified class of objects.Lattice1DGenerator.createNetwork
(Network<T> network) Given an existing network, add edges to create a n x 1 lattice.Lattice2DGenerator.createNetwork
(Network<T> network) Given an existing network, add edges to create a 2D lattice.MatrixNetworkLoader.createNetwork
(Network network) Creates edges using the nodes in the specified network.<T> Network<T>
NetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected) Creates a Network that will contain the specified class of objects.<T> Network<T>
NetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected, NetworkGenerator<T> generator, EdgeCreator<? extends RepastEdge<T>, T> edgeCreator) Creates a Network that will contain the specified class of objects.<T> Network<T>
NetworkFactory.createNetwork
(String netName, Context<T> context, boolean isDirected, EdgeCreator<? extends RepastEdge<T>, T> edgeCreator) Creates a Network that will contain the specified class of objects.<T> Network<T>
NetworkFactory.createNetwork
(String netName, Context<T> context, NetworkGenerator<T> generator, boolean isDirected) Creates a Network that will contain the specified class of objects.NetworkGenerator.createNetwork
(Network<T> network) Creates edges using the nodes in the specified network.RandomDensityGenerator.createNetwork
(Network<T> network) Add edges to the existing network to create a random density network.WattsBetaSmallWorldGenerator.createNetwork
(Network<T> network) Generates a beta-network from a 1-lattice according to the parameters given.Modifier and TypeMethodDescriptionLattice1DGenerator.createNetwork
(Network<T> network) Given an existing network, add edges to create a n x 1 lattice.Lattice2DGenerator.createNetwork
(Network<T> network) Given an existing network, add edges to create a 2D lattice.MatrixNetworkLoader.createNetwork
(Network network) Creates edges using the nodes in the specified network.NetworkGenerator.createNetwork
(Network<T> network) Creates edges using the nodes in the specified network.RandomDensityGenerator.createNetwork
(Network<T> network) Add edges to the existing network to create a random density network.WattsBetaSmallWorldGenerator.createNetwork
(Network<T> network) Generates a beta-network from a 1-lattice according to the parameters given. -
Uses of Network in repast.simphony.data2.gui
Modifier and TypeMethodDescriptionNetworkChooserStep.getChosenNetworks()
NetworkChooserStep.getNetworks()
ModifierConstructorDescriptionNetworkChooserStep
(Iterable<Network> networks, boolean multiSelect, String title, String message) -
Uses of Network in repast.simphony.engine.graph
Modifier and TypeMethodDescriptionDefaultGraphSchedule.schedule
(ScheduleParameters baseParams, Object rootNode, Network topology, Executor<Object> nodeExecutor) Schedules a Repast network to be executed.IGraphSchedule.schedule
(ScheduleParameters baseParams, Object rootNode, Network topology, Executor<Object> nodeExecutor) Schedules a Repast network to be executed.static ISchedulableAction
GraphScheduleUtilities.scheduleGraph
(ISchedule schedule, ScheduleParameters baseParams, Object rootNode, Network topology, Executor<Object> nodeExecutor) Schedules a Repast network to be executed.ModifierConstructorDescriptionNetworkTopologyExecutor
(ISchedule schedule, ScheduleParameters scheduleParams, Executor<Object> nodeExecutor, Network topology) This is the same as NetworkTopologyExecutor(ISchedule, ScheduleParameters, new TopologyVisitor(topology), Executor, NetworkTopology).NetworkTopologyExecutor
(ISchedule schedule, ScheduleParameters baseParams, Traverser<Object> traverser, Executor<Object> nodeExecutor, Network topology) Constructs this executor to execute using the given schedule and node execution parameters.NetworkTraverser
(Network<T> topology) Constructs this traverser with the specified network topology to retrieve information from. -
Uses of Network in repast.simphony.essentials
Modifier and TypeMethodDescriptionstatic Network
RepastEssentials.Create1DLatticeNetwork
(String parentContextPath, String networkName, boolean directed, boolean toroidal, boolean symmetrical) static Network
RepastEssentials.Create2DLatticeNetwork
(String parentContextPath, String networkName, boolean directed, boolean toroidal) static Network
RepastEssentials.CreateNetwork
(String parentContextPath, String netName, boolean isDirected) static Network
RepastEssentials.CreateNetwork
(String parentContextPath, String netName, boolean isDirected, String agentClassName, String fileName, NetworkFileFormat format) static Network
RepastEssentials.CreateNetwork
(String parentContextPath, String networkName, boolean directed, NetworkGenerator gen) static Network
RepastEssentials.CreateRandomDensityNetwork
(String parentContextPath, String networkName, boolean directed, double density, boolean allowSelfLoops, boolean symmetric) static Network
RepastEssentials.CreateWattsBetaSmallWorldNetwork
(String parentContextPath, String networkName, boolean directed, double beta, int nghSize, boolean symmetrical) static Network
RepastEssentials.CreateWattsBetaSmallWorldNetwork
(String parentContextPath, String networkName, boolean directed, double beta, BigDecimal nghSize, boolean symmetrical) static Network
RepastEssentials.FindNetwork
(String networkPath) Finds the Network projection from the given path. -
Uses of Network in repast.simphony.freezedry.freezedryers.proj
Modifier and TypeMethodDescriptionNetwork<?>
NetworkProjectionDryer.instantiate
(Context<?> context, Map<String, Object> properties) This instantiates the network using theDefaultNetworkFactory
, based on the network's name, and directedness (determined from the properties).Modifier and TypeMethodDescriptionprotected void
Stores the network's directedness and edges (each edges as a tuple of (source, target, weight)).protected void
protected void
NetworkProjectionDryer.loadProperties
(Context<?> context, Network<?> proj, Map<String, Object> properties) Loads in the network's edges. -
Uses of Network in repast.simphony.gis.display
ModifierConstructorDescriptionNetworkDisplayLayerGIS
(Network<?> net, Geography geography, org.geotools.styling.Style style) Deprecated. -
Uses of Network in repast.simphony.query.space.graph
Modifier and TypeMethodDescriptionAbstractNetworkQuery.getNetNghIterable
(Network<T> net) Implementor should return the iterator appropriate to their query.NetworkAdjacent.getNetNghIterable
(Network<T> net) Returns an iterator over nodes in the network that are adjacent to the node specified in the constructor.NetworkPredecessor.getNetNghIterable
(Network<T> net) Returns an iterator over nodes in the network that are predecessor of the node specified in the constructor.NetworkSuccessor.getNetNghIterable
(Network<T> net) Returns an iterator over nodes in the network that are successors of the node specified in the constructor.ModifierConstructorDescriptionprotected
AbstractNetworkQuery
(Network<T> network, T obj) Creates a network query that will query the specified network using the specified object.NetPathWithin
(Network<T> network, T obj, double distance) Creates a NetPathWithin query that returns all nodes within the specified path length of the specified node in the specified network.NetworkAdjacent
(Network<T> network, T obj) Creates a NetworkAdjacent query that will query the specified network for the nodes adjacent to the specified object.NetworkPredecessor
(Network<T> network, T obj) Creates a NetworkAdjacent query that will query the specified network for the predecessor nodes of the specified object.NetworkSuccessor
(Network<T> network, T obj) Creates a NetworkAdjacent query that will query the specified network for the successor nodes of the specified object. -
Uses of Network in repast.simphony.query.space.projection
Modifier and TypeMethodDescriptionboolean
boolean
boolean
boolean
Evaluates the Network against this predicate.boolean
-
Uses of Network in repast.simphony.relogo
Modifier and TypeMethodDescriptionAbstractObserver.getNetwork
(String name) Observer.getNetwork
(String name) Modifier and TypeMethodDescriptionUtility.getDirectedNetworks
(Observer observer) Utility.getUndirectedNetworks
(Observer observer) -
Uses of Network in repast.simphony.space.gis
-
Uses of Network in repast.simphony.space.graph
Modifier and TypeMethodDescriptionNetworkEvent.getNetwork()
Gets the network that was the source of this event.ModifierConstructorDescriptionNetworkEvent
(NetworkEvent.EventType type, Network<T> network, RepastEdge<T> edge) Creates a NetworkEvent from the specified type, with the specified network as the source, and the specified edge.ShortestPath
(Network<T> net) ShortestPath
(Network<T> net, T source) Deprecated. -
Uses of Network in repast.simphony.space.projection
-
Uses of Network in repast.simphony.visualization
Modifier and TypeMethodDescriptionvoid
AbstractNetworkLayout.setProjection
(Network<T> projection) -
Uses of Network in repast.simphony.visualization.cgd
Modifier and TypeMethodDescriptionCGDProcessor.processGraph
(Network rGraph) void
CGDLayout.setProjection
(Network projection) -
Uses of Network in repast.simphony.visualization.editor
Modifier and TypeMethodDescriptionvoid
DisplayEditor.netSelected
(Network net) Deprecated.Called when a network is selected in the palette.void
DisplayEditor2D.netSelected
(Network network) Deprecated.Modifier and TypeMethodDescriptionvoid
VizEditorForm.init
(DisplayEditor editor, List<Network> networks) Deprecated.ModifierConstructorDescriptionContSpaceMoveHandler
(org.piccolo2d.PCanvas canvas, Display2D display, ContinuousSpace space, List<Network> nets, EditorNotifier notifier) Deprecated.DefaultEdgeFinder
(List<Network> nets, Display2D display) Deprecated.GridMoveHandler
(org.piccolo2d.PCanvas canvas, Display2D display, Grid grid, List<Network> nets, EditorNotifier notifier) Deprecated.NetMoveHandler
(org.piccolo2d.PCanvas canvas, Display2D display, List<Network> nets) Deprecated. -
Uses of Network in repast.simphony.visualization.editor.gis
Modifier and TypeMethodDescriptionvoid
DisplayEditorGIS.netSelected
(Network net) Deprecated.Called when a network is selected in the palette. -
Uses of Network in repast.simphony.visualization.engine
-
Uses of Network in repast.simphony.visualization.gis3D
Modifier and TypeFieldDescriptionprotected Map<Network<?>,
NetworkLayerGIS> DisplayGIS3D.networkLayerMap
Modifier and TypeMethodDescriptionvoid
DisplayGIS3D.registerNetworkStyle
(Network<?> network, NetworkStyleGIS style) Register the network and style information -
Uses of Network in repast.simphony.visualization.network
ModifierConstructorDescriptionNetworkDisplayLayer2D
(Network<?> net, EdgeStyle2D style, Display2D display, RepastCanvas2D canvas) NetworkDisplayLayer3D
(Network<?> net, EdgeStyle3D style, org.jogamp.java3d.Group topGroup, Display3D display) -
Uses of Network in repast.simphony.visualization.visualization2D
Modifier and TypeMethodDescriptionvoid
Display2D.registerNetworkStyle
(Network topology, EdgeStyle2D style) Deprecated. -
Uses of Network in repast.simphony.visualization.visualization2D.layout
Modifier and TypeMethodDescriptionvoid
JungLayout.setProjection
(Network<T> projection) void
TreeLayout2D.setProjection
(Network<T> projection) -
Uses of Network in repast.simphony.visualization.visualization3D
Modifier and TypeFieldDescriptionprotected Map<Network,
AbstractDisplayLayer3D> AbstractDisplay3D.networkMap
Modifier and TypeMethodDescriptionprotected abstract AbstractDisplayLayer3D
AbstractDisplay3D.createEdgeLayer
(EdgeStyle3D style, Network network) Display3D.createEdgeLayer
(EdgeStyle3D style, Network network) void
AbstractDisplay3D.registerNetworkStyle
(Network network, EdgeStyle3D style) -
Uses of Network in repast.simphony.visualization.visualization3D.layout
Modifier and TypeMethodDescriptionJungNetworkLayout.getGraph()
Accessor for the graph that represets all vertices.protected Network
JungNetworkLayout.getVisibleGraph()
Accessor for the graph that represets all visible verticesModifier and TypeMethodDescriptionvoid
JungNetworkLayout.applyFilter
(Network n) Applies the filter to the current network and network g.void
FR3DLayout.setProjection
(Network projection) void
GEM3DLayout.setProjection
(Network projection) void
JungNetworkLayout.setProjection
(Network projection) -
Uses of Network in repast.simphony.visualizationOGL2D
Modifier and TypeFieldDescriptionprotected Map<Network<?>,
NetworkLayerOGL2D> DisplayOGL2D.networkStyleMap
Modifier and TypeMethodDescriptionvoid
DisplayOGL2D.registerNetworkStyle
(Network<?> network, EdgeStyleOGL2D style) Registers the specified style for the specified network.ModifierConstructorDescriptionNetworkLayerOGL2D
(Network<?> network, EdgeStyleOGL2D style, saf.v3d.scene.VLayer layer, DisplayOGL2D display) -
Uses of Network in repast.simphony.ws
Modifier and TypeMethodDescriptionvoid
DisplayServer2D.registerNetworkStyle
(Network<?> network, EdgeStyleOGL2D style) -
Uses of Network in repast.simphony.ws.gis
Modifier and TypeFieldDescriptionprotected Map<Network<?>,
StyledNetLayerGIS> DisplayServerGIS.networkStyleMap
Modifier and TypeMethodDescriptionvoid
DisplayServerGIS.registerNetworkStyle
(Network<?> network, ServerNetStyleGIS style)
ShortestPath(Network<T> net)