Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
a
b
c
d
f
g
i
j
l
m
o
p
q
r
s
t
u
v
+
Variables
_
a
b
c
d
e
f
g
i
j
l
m
n
p
r
s
u
v
w
+
Typedefs
c
e
f
i
m
q
r
s
v
Enumerations
Enumerator
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Typedefs
b
d
e
f
k
l
m
s
t
v
Enumerations
+
Enumerator
a
b
c
d
e
f
g
i
j
k
m
n
o
p
r
s
t
u
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
u
v
+
Functions
b
c
d
e
f
g
i
l
m
o
p
r
s
t
u
Variables
+
Typedefs
c
d
e
f
k
r
s
t
Enumerations
Enumerator
+
Macros
_
a
b
c
d
e
f
i
l
m
n
o
p
r
s
t
v
tests
python
test-smooth-reach.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
import
unittest
4
from
dynamic_graph.sot.core.smooth_reach
import
SmoothReach
5
6
7
class
SmoothReachTest
(unittest.TestCase):
8
def
test_smooth_reach
(self):
9
sr = SmoothReach(
"banana"
)
10
self.assertIn(
"input(vector)::start (Type Cst)"
, str(sr.start))
11
self.assertIn(
"output(vector)::goal (Type Fun)"
, str(sr.goal))
12
13
14
if
__name__ ==
"__main__"
:
15
unittest.main()
test-smooth-reach.SmoothReachTest
Definition:
test-smooth-reach.py:7
test-smooth-reach.SmoothReachTest.test_smooth_reach
def test_smooth_reach(self)
Definition:
test-smooth-reach.py:8
sot-core
Author(s): Olivier Stasse, ostasse@laas.fr
autogenerated on Wed Jun 21 2023 02:51:26