]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - incl/nn.h
Fix indexing overflow
[hubacji1/iamcar.git] / incl / nn.h
1 /*
2 This file is part of I am car.
3
4 I am car is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 I am car is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with I am car. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef NEARESTNEIGHBOUR_H
19 #define NEARESTNEIGHBOUR_H
20
21 #include <array>
22 #include "aux.h"
23 #include "rrtbase.h"
24 #include "rrtnode.h"
25
26 struct mcnn { // min-cost nearest neighbour
27         float mc;
28         RRTNode *nn;
29 };
30 #pragma omp declare reduction \
31         (minn: struct mcnn: omp_out = \
32          omp_in.mc < omp_out.mc ? omp_in : omp_out) \
33          initializer \
34          (omp_priv(omp_orig))
35
36 RRTNode *nn1(
37                 std::vector<RRTNode *> &nodes,
38                 RRTNode *node,
39                 float (*cost)(RRTNode *, RRTNode *));
40 RRTNode *nn2(
41                 std::vector<RRTNode *> &nodes,
42                 RRTNode *node,
43                 float (*cost)(RRTNode *, RRTNode *));
44 RRTNode *nn3(
45                 std::vector<RRTNode *> (&nodes)[IYSIZE],
46                 RRTNode *node,
47                 float (*cost)(RRTNode *, RRTNode *));
48 RRTNode *nn4(
49                 std::array<std::vector<RRTNode *>, IYSIZE> &nodes,
50                 RRTNode *node,
51                 float (*cost)(RRTNode *, RRTNode *));
52 RRTNode *nn5(
53                 std::vector<RRTNode *> (&nodes)[IYSIZE],
54                 RRTNode *node,
55                 float (*cost)(RRTNode *, RRTNode *),
56                 char tree);
57 RRTNode *nn6(
58                 std::vector<RRTNode *> (&nodes)[IYSIZE],
59                 RRTNode *node,
60                 float (*cost)(RRTNode *, RRTNode *));
61
62 #endif