]> rtime.felk.cvut.cz Git - hubacji1/rrts.git/blob - CHANGELOG.md
Add goal found zone ut
[hubacji1/rrts.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 - 3D grid extension.
13 - Uniform sampling. (Normal sampling is still default.)
14 - Compound extensions 18 - 33.
15 - Path optimization in backward direction.
16
17 ### Changed
18 - Reformat lists in readme.
19 - Add `RRTExt3` to compound extensions 18 - 33.
20
21 ## 0.3.1 - 2020-01-03
22 ### Fixed
23 - Double value in unsigned int constant.
24
25 ## 0.3.0 - 2020-01-03
26 ### Added
27 - Collision detection based on [cute c2][].
28 - Time restriction for algorithm.
29 - RRT node types (currently `cusp` and `connected`).
30 - Compound extensions.
31 - Dijkstra algorithm for path optimization (`rrtext3.cc`).
32 - Grid based `nn` and `nv` methods (`rrtext4.cc`).
33 - Compound extensions.
34 - JSON output.
35 - Should continue method.
36 - Deinit method -- get ready for planner reset.
37 - JSON input.
38 - JSON output.
39 - 2D K-d tree extension.
40 - 3D K-d tree extension.
41
42 ### Changed
43 - How the algorithm is stopped - possible to choose from more options.
44 - Separate `store_node` procedure.
45 - Grid constants used in `ext4`.
46 - Some small refactoring.
47
48 ### Deprecated
49 - `should_continue` method.
50
51 [cute c2]: https://github.com/RandyGaul/cute_headers/blob/master/cute_c2.h
52
53 ## 0.2.0 - 2019-09-26
54 ### Added
55 - Bicycle car constructor for RRTNode.
56 - Different costs extension.
57
58 ### Changed
59 - Extend next with steering from just added nodes.
60 - Refactor next.
61
62 ## 0.1.0 - 2019-08-05
63 ### Added
64 - Changelog, license, readme.
65 - Doxygen config file.
66 - [WvTest][] unit testing framework.
67 - Basic naive RRT star implementation without obstacles.
68 - Polygon obstacle, collision with obstacles.
69 - Use [Reeds and Shepp](https://github.com/ghliu/pyReedsShepp) in steer method.
70
71 [WvTest]: https://github.com/apenwarr/wvtest