Uses of Interface
repast.simphony.space.graph.Traverser
Packages that use Traverser
Package
Description
-
Uses of Traverser in repast.simphony.engine.controller
Classes in repast.simphony.engine.controller that implement TraverserModifier and TypeClassDescriptionclassATraverserthat traverses Contexts by returning the subContexts of passed in Contexts. -
Uses of Traverser in repast.simphony.engine.graph
Classes in repast.simphony.engine.graph that implement TraverserModifier and TypeClassDescriptionclassA simpleTraverserthat will return elements from an Iterator in the order they are returned by that iterator.classA simple traverser forNaryTrees.classA traverser for Repast Topologies.Methods in repast.simphony.engine.graph with parameters of type TraverserModifier and TypeMethodDescriptionstatic <T> voidEngineGraphUtilities.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> TEngineGraphUtilities.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.Constructors in repast.simphony.engine.graph with parameters of type TraverserModifierConstructorDescriptionAbstractGraphExecutor(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
Classes in repast.simphony.integration that implement Traverser -
Uses of Traverser in repast.simphony.util.collections
Methods in repast.simphony.util.collections with parameters of type TraverserModifier and TypeMethodDescriptionstatic <T> voidCollectionUtils.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> TCollectionUtils.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.