Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
Correct typo
  • Loading branch information
Bharath2 authored Apr 17, 2022
1 parent b79a198 commit f45dbb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ilqr/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def Bounded(vars, high, low, *params):
for i in range(len(vars)):
diff = (high[i] - low[i])/2
cs.append((high[i] - vars[i])/diff)
cs.append((vars[i] - lowz[i])/diff)
cs.append((vars[i] - low[i])/diff)
return Constrain(cs, *params)


Expand Down

0 comments on commit f45dbb8

Please sign in to comment.