org.opentripplanner.graph_builder.module.map.EndMatchState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.graph_builder.module.map;
import java.util.List;
/**
* The end of a route's geometry, meaning that the search can quit
*
* @author novalis
*/
public class EndMatchState extends MatchState {
public EndMatchState(MatchState parent, double error, double distance) {
super(parent, null, distance);
this.currentError = error;
}
@Override
public List getNextStates() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy