Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CSE-478wi
lab2
Commits
e2a64f6a
Commit
e2a64f6a
authored
Feb 02, 2020
by
Kay Ke
Browse files
Remove non linear controller
parent
79e1a521
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/nonlinear.py
deleted
100755 → 0
View file @
79e1a521
import
numpy
as
np
import
rospy
from
controller
import
BaseController
# Uses Proportional-Differential Control from
# https://www.a1k0n.net/2018/11/13/fast-line-following.html
class
NonLinearController
(
BaseController
):
def
__init__
(
self
):
super
(
NonLinearController
,
self
).
__init__
()
def
get_reference_index
(
self
,
pose
):
assert
False
,
"Complete this function"
def
get_control
(
self
,
pose
,
index
):
assert
False
,
"Complete this function"
def
reset_state
(
self
):
with
self
.
path_lock
:
assert
False
,
"Complete this function"
def
reset_params
(
self
):
with
self
.
path_lock
:
assert
False
,
"Complete this function"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment