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
VIGNET Pierre
cadbiom
Commits
e90c51fc
Commit
e90c51fc
authored
Jan 17, 2020
by
VIGNET Pierre
Browse files
[lib] sig_expr: fix typos
parent
4cb6f636
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/cadbiom/models/biosignal/sig_expr.py
View file @
e90c51fc
...
...
@@ -44,8 +44,6 @@ Standard representation of biosignal expressions as trees.
In addition to standard logical operator, we introduce the default
and when operators.
"""
# representation of signal expressions as trees
class
SigExpression
(
object
):
"""
...
...
@@ -66,13 +64,13 @@ class SigExpression(object):
"""
Gives the set of idents used in the expression
"""
return
set
(
[]
)
return
set
()
def
get_ultimate_signals
(
self
,
mcsystem
):
"""
Gives the set of signals used in the expression
"""
return
set
(
[]
)
return
set
()
def
is_clock
(
self
,
symb_table
,
method
=
None
):
"""
...
...
@@ -195,7 +193,7 @@ class SigConstExpr(SigExpression):
return
str
(
self
.
value
)
def
get_signals
(
self
):
return
set
(
[]
)
return
set
()
def
is_clock
(
self
,
symb_table
,
method
=
None
):
"""
...
...
@@ -231,7 +229,7 @@ class SigBotExpr(SigExpression):
return
"%b"
def
get_signals
(
self
):
return
set
(
[]
)
return
set
()
def
is_bot
(
self
):
return
True
...
...
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