Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
graph_drawing
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
graph_drawing
Commits
aade5fc5
Commit
aade5fc5
authored
Apr 19, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Division now has a higher precedece than multiplication (like implemented by MathJax).
parent
ade1a950
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
line.py
line.py
+2
-1
tests/test_line.py
tests/test_line.py
+1
-1
No files found.
line.py
View file @
aade5fc5
...
@@ -6,7 +6,8 @@ OPERATORS = (
...
@@ -6,7 +6,8 @@ OPERATORS = (
(
'^^'
,
),
(
'^^'
,
),
(
'='
,
),
(
'='
,
),
(
'+'
,
'-'
),
(
'+'
,
'-'
),
(
'*'
,
'/'
,
'mod'
),
(
'*'
,
'mod'
),
(
'/'
,
),
(
'^'
,
'_'
),
(
'^'
,
'_'
),
)
)
...
...
tests/test_line.py
View file @
aade5fc5
...
@@ -51,7 +51,7 @@ class TestLine(unittest.TestCase):
...
@@ -51,7 +51,7 @@ class TestLine(unittest.TestCase):
def
test_parentheses_equal_precedence_left
(
self
):
def
test_parentheses_equal_precedence_left
(
self
):
a
,
b
,
c
,
d
=
L
(
'a'
),
L
(
'b'
),
L
(
'c'
),
L
(
'd'
)
a
,
b
,
c
,
d
=
L
(
'a'
),
L
(
'b'
),
L
(
'c'
),
L
(
'd'
)
exp
=
N
(
'*'
,
N
(
'/'
,
N
(
'*'
,
a
,
b
),
c
),
d
)
exp
=
N
(
'*'
,
N
(
'/'
,
N
(
'*'
,
a
,
b
),
c
),
d
)
self
.
assertEquals
(
generate_line
(
exp
),
'
ab
/ c * d'
)
self
.
assertEquals
(
generate_line
(
exp
),
'
(ab)
/ c * d'
)
def
test_parentheses_unary
(
self
):
def
test_parentheses_unary
(
self
):
neg
=
N
(
'-'
,
N
(
'+'
,
L
(
1
),
L
(
2
)))
neg
=
N
(
'-'
,
N
(
'+'
,
L
(
1
),
L
(
2
)))
...
...
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