mirror of
https://github.com/zhm-real/PathPlanning.git
synced 2026-08-30 00:50:46 +08:00
5 lines
113 B
Python
5 lines
113 B
Python
# Dynamic programming algorithm
|
|
|
|
class DP(object):
|
|
def __init__(self, X, U, p0, pf, T, l, q, gamma):
|
|
|