Open dmh2000 opened 5 years ago
Bug in RRT class implementation
def add_vertex(self, x_new): self.tree.add_node(tuple(x_init))
should add x_new, not x_init. this method is not used in the excercise so it doesn't cause a problem but it should be fixed because x_init can be a global variable that would be added.
Bug in RRT class implementation
should add x_new, not x_init. this method is not used in the excercise so it doesn't cause a problem but it should be fixed because x_init can be a global variable that would be added.