]> rtime.felk.cvut.cz Git - hubacji1/rrts.git/blob - CHANGELOG.md
Update changelog
[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
18 [cute c2]: https://github.com/RandyGaul/cute_headers/blob/master/cute_c2.h
19
20 ### Changed
21 - How the algorithm is stopped - possible to choose from more options.
22
23 ## 0.2.0 - 2019-09-26
24 ### Added
25 - Bicycle car constructor for RRTNode.
26 - Different costs extension.
27
28 ### Changed
29 - Extend next with steering from just added nodes.
30 - Refactor next.
31
32 ## 0.1.0 - 2019-08-05
33 ### Added
34 - Changelog, license, readme.
35 - Doxygen config file.
36 - [WvTest][] unit testing framework.
37 - Basic naive RRT star implementation without obstacles.
38 - Polygon obstacle, collision with obstacles.
39 - Use [Reeds and Shepp](https://github.com/ghliu/pyReedsShepp) in steer method.
40
41 [WvTest]: https://github.com/apenwarr/wvtest