// // Created by wrede on 25.04.16. // #ifndef GBMOT_DEFINITIONS_H #define GBMOT_DEFINITIONS_H #include #include #include #include "../core/Definitions.h" #include "../core/ObjectData.h" #include "../core/Tracklet.h" namespace algo { //TODO read minimal example typedef boost::property EdgeProp; typedef boost::property VertexProp; typedef boost::adjacency_list< boost::listS, boost::vecS, boost::directedS, VertexProp, EdgeProp> DirectedGraph; typedef boost::graph_traits::vertex_descriptor Vertex; typedef boost::property_map::type VertexIndexMap; typedef boost::property_map::type VertexValueMap; typedef boost::iterator_property_map PredecessorMap; typedef boost::iterator_property_map DistanceMap; }; #endif //GBMOT_DEFINITIONS_H