-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcol_checker.cpp
60 lines (56 loc) · 1.6 KB
/
col_checker.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "col_checker.hpp"
#include "col_set.hpp"
using namespace mstar;
// /**
// * Performs simple pebble motion on the graph collision checking
// *
// * @param c1 source
// * @param c2 target
// *
// * @return collision set of the edge
// */
// template<class T>
// ColSet simple_edge_check(const T &c1,
// const T&c2){
// ColSet col;
// for (uint i = 0; i < c1.size(); i++){
// for (uint j = i; j < c1.size(); j++){
// if (c2[i] == c2[j] || (c1[i] == c2[j] && c1[j] == c2[i])){
// add_col_set_in_place({{i, j}}, col);
// }
// }
// }
// return col;
// }
/**
* Iterator version
*/
template<class T>
ColSet simple_edge_check(T source_start, T source_end,
T target_start, T target_end){
int size = source_end - source_start;
ColSet col;
for (uint i = 0; i < size; i++){
for (uint j = i + 1; j < size; j++){
if (*(target_start + i) == *(target_start + j) ||
(*(source_start + i) == *(target_start + j) &&
*(source_start + j) == *(target_start + i))){
add_col_set_in_place({{i, j}}, col);
}
}
}
return col;
}
ColSet SimpleGraphColCheck::check_edge(const OdCoord &c1,
const OdCoord &c2,
const std::vector<int> ids) const{
if (c2.is_standard()){
return simple_edge_check(c1.coord.cbegin(), c1.coord.cend(),
c2.coord.cbegin(), c2.coord.cend());
}
// c2 is an intermediate vertex, so only check for collisions between
// robots with an assigned move in c2
int size = c2.move_tuple.size();
return simple_edge_check(c1.coord.cbegin(), c1.coord.cbegin() + size,
c2.move_tuple.cbegin(), c2.move_tuple.cend());
}