Assignment Search Framework
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
map_utils.h
Go to the documentation of this file.
1 /*
2  * map_utils.h
3  *
4  * LICENSE HERE
5  *
6  * Created on: 2016-09-30
7  * Author: Rick Valenzano
8  */
15 #ifndef MAP_UTILS_H_
16 #define MAP_UTILS_H_
17 
18 #include <string>
19 #include <vector>
20 #include "map_location.h"
21 
36 bool read_in_pathfinding_probs(std::string file_name, std::vector<MapLocation> &starts, std::vector<MapLocation> &goals);
37 
38 #endif /* MAP_UTILS_H_ */
bool read_in_pathfinding_probs(std::string file_name, std::vector< MapLocation > &starts, std::vector< MapLocation > &goals)