Added cells customizer

This commit is contained in:
Michael Krasnyk
2017-02-20 14:20:22 +01:00
committed by Patrick Niklaus
parent aa1c4eb262
commit bc2e06502e
4 changed files with 446 additions and 18 deletions
+3
View File
@@ -16,6 +16,8 @@
using namespace osrm;
using namespace osrm::partition;
namespace
{
struct MockEdge
{
NodeID start;
@@ -41,6 +43,7 @@ auto makeGraph(const std::vector<MockEdge> &mock_edges)
std::sort(edges.begin(), edges.end());
return util::StaticGraph<EdgeData>(max_id + 1, edges);
}
}
BOOST_AUTO_TEST_SUITE(cell_storage_tests)