osrm-backend/include/engine/map_matching/sub_matching.hpp

21 lines
386 B
C++
Raw Permalink Normal View History

#ifndef MAP_MATCHING_SUB_MATCHING_HPP
#define MAP_MATCHING_SUB_MATCHING_HPP
#include "engine/phantom_node.hpp"
#include <vector>
namespace osrm::engine::map_matching
{
struct SubMatching
{
std::vector<PhantomNode> nodes;
std::vector<unsigned> indices;
std::vector<unsigned> alternatives_count;
double confidence;
};
2022-12-20 12:00:11 -05:00
} // namespace osrm::engine::map_matching
#endif