All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.astar.spi.TraverseVisitor Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.astar.spi;

public interface TraverseVisitor<
  State extends AStarState, Edge extends AStarEdge
> {
  /** Called when A* explores an edge */
  void visitEdge(Edge edge);

  /** Called when A* dequeues a vertex */
  void visitVertex(State state);

  /** Called when A* enqueues a vertex */
  void visitEnqueue();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy