Uses of Interface
repast.simphony.space.graph.Traverser
Package
Description
-
Uses of Traverser in repast.simphony.engine.controller
Modifier and TypeClassDescriptionclass
ATraverser
that traverses Contexts by returning the subContexts of passed in Contexts. -
Uses of Traverser in repast.simphony.engine.graph
Modifier and TypeClassDescriptionclass
A simpleTraverser
that will return elements from an Iterator in the order they are returned by that iterator.class
A simple traverser forNaryTree
s.class
A traverser for Repast Topologies.Modifier and TypeMethodDescriptionstatic <T> void
EngineGraphUtilities.breadthFirstMap
(Executor<T> visitor, Traverser<T> traverser, T root) Performs a breadth-first traversal applying the given executor to the objects returned by the traverser.static <T> T
EngineGraphUtilities.breadthFirstSearch
(org.apache.commons.collections15.Predicate<T> checker, Traverser<T> traverser, T root) Performs a breadth-first traversal, applying the given rule to the objects returned by the traverser.ModifierConstructorDescriptionAbstractGraphExecutor
(ISchedule schedule, ScheduleParameters baseParams, Traverser<E> traverser, Executor<E> nodeExecutor) Constructs this graph executor to work with the specified parameters.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. -
Uses of Traverser in repast.simphony.integration
-
Uses of Traverser in repast.simphony.util.collections
Modifier and TypeMethodDescriptionstatic <T> void
CollectionUtils.breadthFirstMap
(Executor<T> visitor, Traverser<T> traverser, T root) Performs a breadth-first traversal applying the given executor to the objects returned by the traverser.static <T> T
CollectionUtils.breadthFirstSearch
(org.apache.commons.collections15.Predicate<T> checker, Traverser<T> traverser, T root) Performs a breadth-first traversal, applying the given rule to the objects returned by the traverser.