]> rtime.felk.cvut.cz Git - hubacji1/iamcar.git/blob - CHANGELOG.md
Update changelog (build with Ninja)
[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 - Compilation macros that can specify output binary parameters.
13 - Auxiliary build and test scripts.
14 - Nearest neighbour `nn2` procedure based on linear search over `nodes()`.
15 - Nearest neighbour `nn3` procedure based on indexing over `y` axis.
16
17 ### Changed
18 - Build with Ninja.
19
20 ## 0.1.0 - 2018-07-05
21 ### Added
22 - Changelog, license, readme.
23 - Class for RRT nodes.
24 - Base class for RRT planners.
25 - RRT primitive procedures:
26         - cost,
27         - nearest neigbour search,
28         - samling procedure,
29         - steering procedure.
30 - RRT planner based on [LaValle1998] paper.
31 - Main program (input/output) with cmake file.
32 - Obstacles class (circle obstacle, segment obstacle).
33 - Collision check function to base RRT class.
34 - Bicycle car model used for collision check with car frame.
35 - Near vertices procedure.
36 - RRT\* planner based on [Karaman2011] paper.
37 - Alternative steering procedure.
38 - Reeds and Shepp cost, steering procedures.
39 - Bicycle car simulation.
40 - Closed loop controller with PI for speed and PurePursuit based on
41   [Coulter1992] paper for steering.
42 - Testing parking scenarios.
43 - Plot python script.
44 - RRT planner based on [Kuwata2008] paper.
45 - RRT testing planner `T1`. First node of steer add as in RRT\* (connect and
46   rewire procedures) then the rest stick to the first node without rewiring.
47 - Cost log and legend with cost in plot.
48
49 ### Changed
50 - Adding JSON ouput for edges, samples.
51 - Steer procedure `st2` use bicycle car model.
52
53 ### Fixed
54 - Memory leaks.
55 - RRTNode heading overflow in constructor.
56 - Sampling range in `sa1` algorithm.