]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - CHANGELOG.md
Set T3 as default planner
[hubacji1/iamcar.git] / CHANGELOG.md
1 # Changelog
2 All notable changes to this project will be documented in this file.
3
4 The format is based on [Keep a Changelog][] and this project adheres to
5 [Semantic Versioning][].
6
7 [Keep a Changelog]: http://keepachangelog.com/
8 [Semantic Versioning]: http://semver.org/
9
10 ## Unreleased
11 ### Added
12 - Bidirectional T3 planner based on two T2 planners.
13 - RRT\*-Connect algorithm based on [Klemm2015] paper.
14 - Optimization procedure based on *Remove Redundant Points* from [Lan2015].
15 - Variable steer step size to `st3` procedure.
16
17 ### Changed
18 - Make `sample` procedure part of RRTBase.
19 - Make `cost` function part of RRTBase.
20 - Make `nn` procedure part of RRTBase.
21 - Make `nv` procedure part of RRTBase.
22 - Make `steer` procedure part of RRTBase.
23 - Refactor `gplot` module.
24 - T2 planner to include variable steer step size.
25 - Set T3 planner as default.
26
27 ### Removed
28 - RRTBase planner destructor. See `base/rrtbase.cc` for more info.
29
30 ## 0.3.0 - 2018-12-03
31 ### Added
32 - Cost distribution plot function.
33 - Heading independent near vertices procedure inspired by `nn4`.
34
35 ### Changed
36 - Test script.
37 - `nn4` use Euclidean distance while independently on RRT framework cost used.
38
39 ### Removed
40 - `opt_part` procedure (unused).
41
42 ### Fixed
43 - Dijkstra path optimization only if goal found.
44 - Workaround used for optimizing part of path. There is a bug that causes
45   collision when steering from `i` to `i + 1` node of path from `tlog`. See
46   commit `9186f27`.
47
48 ## 0.2.1 - 2018-10-06
49 ### Fixed
50 - Optimize path until optimal.
51
52 ## 0.2.0 - 2018-10-06
53 ### Added
54 - Compilation macros that can specify output binary parameters.
55 - Auxiliary build and test scripts.
56 - Nearest neighbour `nn2` procedure based on linear search over `nodes()`.
57 - Nearest neighbour `nn3` procedure based on indexing over `y` axis.
58 - Near vertices `nv2` procedure based on indexing over `y` axis.
59 - OpenMP parallelization of nearest neighbour and near vertices procedures.
60 - Rebase method that changes (rebases) RRT root to another RRT node.
61 - Structure and method for logging tree edges.
62 - Time dimension to RRT node.
63 - Obstacle distance to RRT Node.
64 - Test planner `T2` based on RRT\* [Karaman2011] with steering from newly added
65   nodes to goal.
66 - OpenGL 2.1 plot using SDL2.
67 - `nn4` procedure - set node's heading to heading of currently comparing node.
68 - Add optimize path method based on [Islam2012]'s *Path Optimize* procedure.
69 - Update cost method of `RRTNode` that updates cumulative costs of all
70   children.
71
72 ### Changed
73 - Build with Ninja.
74 - Split `connect` and `rewire` procedures from Karaman2011's `next` procedure.
75 - Main planning loop logic.
76 - Path optimization of `T2` based on Dijkstra between cusps points.
77
78 ### Fixed
79 - Deletion of nodes returned by `steer` but not used.
80 - Scaling for `iy_` nearest neighbour search structure.
81
82 ## 0.1.0 - 2018-07-05
83 ### Added
84 - Changelog, license, readme.
85 - Class for RRT nodes.
86 - Base class for RRT planners.
87 - RRT primitive procedures:
88         - cost,
89         - nearest neigbour search,
90         - samling procedure,
91         - steering procedure.
92 - RRT planner based on [LaValle1998] paper.
93 - Main program (input/output) with cmake file.
94 - Obstacles class (circle obstacle, segment obstacle).
95 - Collision check function to base RRT class.
96 - Bicycle car model used for collision check with car frame.
97 - Near vertices procedure.
98 - RRT\* planner based on [Karaman2011] paper.
99 - Alternative steering procedure.
100 - Reeds and Shepp cost, steering procedures.
101 - Bicycle car simulation.
102 - Closed loop controller with PI for speed and PurePursuit based on
103   [Coulter1992] paper for steering.
104 - Testing parking scenarios.
105 - Plot python script.
106 - RRT planner based on [Kuwata2008] paper.
107 - RRT testing planner `T1`. First node of steer add as in RRT\* (connect and
108   rewire procedures) then the rest stick to the first node without rewiring.
109 - Cost log and legend with cost in plot.
110
111 ### Changed
112 - Adding JSON ouput for edges, samples.
113 - Steer procedure `st2` use bicycle car model.
114
115 ### Fixed
116 - Memory leaks.
117 - RRTNode heading overflow in constructor.
118 - Sampling range in `sa1` algorithm.