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

org.opentripplanner.ext.flex.flexpathcalculator.FlexPathCalculator Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.ext.flex.flexpathcalculator;

import org.opentripplanner.routing.graph.Vertex;

import javax.annotation.Nullable;

/**
 * FlexPathCalculator is used to calculate the driving times and distances during flex routing
 */
public interface FlexPathCalculator {

  @Nullable
  FlexPath calculateFlexPath(Vertex fromv, Vertex tov, int fromStopIndex, int toStopIndex);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy