RoboJackets / rrt

C++ RRT (Rapidly-exploring Random Tree) Implementation
Other
253 stars 84 forks source link

Bias tree growth towards goal #5

Closed justbuchanan closed 9 years ago

justbuchanan commented 9 years ago

Right now tree growth is totally random. A much better implementation would be to extend towards a random point with probability p and extend towards the goal with probability 1-p.