/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
py-modules-0.2.10
routing/road_index.cpp
20 строк
531 B
Mikhail Gorbushin
[routing] Add IndexGraphStarterJoints for routing between joints, instead of segments, routing_integration_tests OK.
23 янв 2019, 17:11
23 янв 2019, 17:11
019c028
Код
Авторство
О чём код?
#include "routing/road_index.hpp" #include "routing/routing_exceptions.hpp" namespace routing { void RoadIndex::Import(vector<Joint> const & joints) { for (Joint::Id jointId = 0; jointId < joints.size(); ++jointId) { Joint const & joint = joints[jointId]; for (uint32_t i = 0; i < joint.GetSize(); ++i) { RoadPoint const & entry = joint.GetEntry(i); RoadJointIds & roadJoints = m_roads[entry.GetFeatureId()]; roadJoints.AddJoint(entry.GetPointId(), jointId); } } } } // namespace routing