]> rtime.felk.cvut.cz Git - hubacji1/rrts.git/blob - CHANGELOG.md
b85f9e276cefdeacdfd4b861accbdb9ac996c1c9
[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 - Collision detection based on [cute c2][].
13 - Time restriction for algorithm.
14 - RRT node types (currently `cusp` and `connected`).
15 - Compound extensions.
16 - Dijkstra algorithm for path optimization (`rrtext3.cc`).
17 - Grid based `nn` and `nv` methods (`rrtext4.cc`).
18 - Compound extensions.
19 - JSON output.
20 - Should continue method.
21 - Deinit method -- get ready for planner reset.
22 - JSON input.
23 - JSON output.
24
25 ### Changed
26 - How the algorithm is stopped - possible to choose from more options.
27 - Separate `store_node` procedure.
28 - Grid constants used in `ext4`.
29 - Some small refactoring.
30
31 ### Deprecated
32 - `should_continue` method.
33
34 [cute c2]: https://github.com/RandyGaul/cute_headers/blob/master/cute_c2.h
35
36 ## 0.2.0 - 2019-09-26
37 ### Added
38 - Bicycle car constructor for RRTNode.
39 - Different costs extension.
40
41 ### Changed
42 - Extend next with steering from just added nodes.
43 - Refactor next.
44
45 ## 0.1.0 - 2019-08-05
46 ### Added
47 - Changelog, license, readme.
48 - Doxygen config file.
49 - [WvTest][] unit testing framework.
50 - Basic naive RRT star implementation without obstacles.
51 - Polygon obstacle, collision with obstacles.
52 - Use [Reeds and Shepp](https://github.com/ghliu/pyReedsShepp) in steer method.
53
54 [WvTest]: https://github.com/apenwarr/wvtest