Fix formatting
This commit is contained in:
parent
731371aece
commit
0e33bde31b
@ -55,7 +55,7 @@ template <> class AlgorithmDataFacade<CH>
|
|||||||
|
|
||||||
virtual EdgeID FindSmallestEdge(const NodeID edge_based_node_from,
|
virtual EdgeID FindSmallestEdge(const NodeID edge_based_node_from,
|
||||||
const NodeID edge_based_node_to,
|
const NodeID edge_based_node_to,
|
||||||
const std::function<bool(const EdgeData&)> &filter) const = 0;
|
const std::function<bool(const EdgeData &)> &filter) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <> class AlgorithmDataFacade<MLD>
|
template <> class AlgorithmDataFacade<MLD>
|
||||||
|
|||||||
@ -130,9 +130,10 @@ class ContiguousInternalMemoryAlgorithmDataFacade<CH> : public datafacade::Algor
|
|||||||
edge_based_node_from, edge_based_node_to, result);
|
edge_based_node_from, edge_based_node_to, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
EdgeID FindSmallestEdge(const NodeID edge_based_node_from,
|
EdgeID
|
||||||
const NodeID edge_based_node_to,
|
FindSmallestEdge(const NodeID edge_based_node_from,
|
||||||
const std::function<bool(const EdgeData&)> &filter) const override final
|
const NodeID edge_based_node_to,
|
||||||
|
const std::function<bool(const EdgeData &)> &filter) const override final
|
||||||
{
|
{
|
||||||
return m_query_graph.FindSmallestEdge(edge_based_node_from, edge_based_node_to, filter);
|
return m_query_graph.FindSmallestEdge(edge_based_node_from, edge_based_node_to, filter);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -238,9 +238,10 @@ class MockAlgorithmDataFacade<engine::datafacade::CH>
|
|||||||
return SPECIAL_EDGEID;
|
return SPECIAL_EDGEID;
|
||||||
}
|
}
|
||||||
|
|
||||||
EdgeID FindSmallestEdge(const NodeID /* from */,
|
EdgeID
|
||||||
const NodeID /* to */,
|
FindSmallestEdge(const NodeID /* from */,
|
||||||
const std::function<bool(const EdgeData&)> &/* filter */) const override
|
const NodeID /* to */,
|
||||||
|
const std::function<bool(const EdgeData &)> & /* filter */) const override
|
||||||
{
|
{
|
||||||
return SPECIAL_EDGEID;
|
return SPECIAL_EDGEID;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user