Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
trs
Commits
a156a2b5
Commit
a156a2b5
authored
Mar 12, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added fucntion to check if a node contains another node.
parent
dd613cc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
src/node.py
src/node.py
+17
-2
tests/test_node.py
tests/test_node.py
+9
-0
No files found.
src/node.py
View file @
a156a2b5
...
...
@@ -50,8 +50,9 @@ OP_HINT = 20
OP_REWRITE_ALL
=
21
OP_REWRITE
=
22
# Special identifier
d
# Special identifier
s
PI
=
'pi'
E
=
'e'
TYPE_MAP
=
{
...
...
@@ -178,7 +179,7 @@ class ExpressionBase(object):
and
(
identifier
==
None
or
self
.
value
==
identifier
)
def
is_variable
(
self
):
return
self
.
type
==
TYPE_IDENTIFIER
and
self
.
value
!=
PI
return
self
.
type
==
TYPE_IDENTIFIER
and
self
.
value
not
in
(
PI
,
E
)
def
is_int
(
self
):
return
self
.
type
==
TYPE_INTEGER
...
...
@@ -217,6 +218,20 @@ class ExpressionBase(object):
"""Negate the node n times."""
return
negate
(
self
,
self
.
negated
+
n
)
def
contains
(
self
,
node
,
include_self
=
True
):
"""
Check if a node equal to the specified one exists within this node.
"""
if
include_self
and
self
==
node
:
return
True
if
not
self
.
is_leaf
:
for
child
in
self
:
if
child
.
contains
(
node
,
include_self
=
True
):
return
True
return
False
class
ExpressionNode
(
Node
,
ExpressionBase
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
...
...
tests/test_node.py
View file @
a156a2b5
...
...
@@ -209,3 +209,12 @@ class TestNode(RulesTestCase):
n
=
tree
(
'-(a + b)'
)
self
.
assertEqualNodes
(
Scope
(
n
).
as_nary_node
(),
n
)
self
.
assertEqualNodes
(
Scope
(
-
n
).
as_nary_node
(),
-
n
)
def
test_contains
(
self
):
a
,
ab
,
bc
,
ln0
,
ln1
=
tree
(
'a, ab, bc, ln(a) + 1, ln(b) + 1'
)
self
.
assertTrue
(
a
.
contains
(
a
))
self
.
assertTrue
(
ab
.
contains
(
a
))
self
.
assertFalse
(
bc
.
contains
(
a
))
self
.
assertTrue
(
ln0
.
contains
(
a
))
self
.
assertFalse
(
ln1
.
contains
(
a
))
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