motion-planners
motion-planners copied to clipboard
get_nth() in Lattice.py is not right?
Currently, it has def get_nth(generator, n=0): return next(islice(generator, n), None)
When it should be?:
def get_nth(generator, n=0): return next(islice(generator, n, None))