improving fork handling on three-way turns

This commit is contained in:
Moritz Kobitzsch
2016-03-08 11:30:33 +01:00
committed by Patrick Niklaus
parent f769478abe
commit 06aa6dedab
2 changed files with 81 additions and 97 deletions
+1 -3
View File
@@ -106,15 +106,13 @@ bool isMotorwayJunction(const NodeID from,
const util::NodeBasedDynamicGraph &node_based_graph);
// Decide whether a turn is a turn or a ramp access
TurnType findBasicTurnType(const NodeID from,
const EdgeID via_edge,
TurnType findBasicTurnType(const EdgeID via_edge,
const TurnCandidate &candidate,
const util::NodeBasedDynamicGraph &node_based_graph);
// Get the Instruction for an obvious turn
// Instruction will be a silent instruction
TurnInstruction getInstructionForObvious(const std::size_t number_of_candidates,
const NodeID from,
const EdgeID via_edge,
const TurnCandidate &candidate,
const util::NodeBasedDynamicGraph &node_based_graph);