Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
trs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
trs
Commits
dd369030
Commit
dd369030
authored
13 years ago
by
Taddeus Kroes
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of kompiler.org:trs
parents
b6bd65db
dd5f8afc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO
+20
-0
20 additions, 0 deletions
TODO
src/strategy.py
+3
-2
3 additions, 2 deletions
src/strategy.py
tests/test_leiden_oefenopgave.py
+8
-4
8 additions, 4 deletions
tests/test_leiden_oefenopgave.py
with
31 additions
and
6 deletions
TODO
+
20
−
0
View file @
dd369030
# vim: set fileencoding=utf-8 :
- Fix BisonSyntaxError location tracking.
- Sort polynom by its exponents?
...
...
@@ -70,6 +72,24 @@ Division of 0 by 1 reduces to 0.
>>> @
2 / 7 + 4 / 11
- Cancel terms before multiplying constants: (3 * ...) / (3 * ...) -> ... / ...
>>> (7/3)*(3/5)
7 / 3 * (3 / 5)
>>> ??
Expand fraction with nominator greater than denominator 7 / 3 to an integer
plus a fraction.
Multiply fractions 7 / 3 and 3 / 5.
>>> @
7 * 3 / (3 * 5)
>>> ?
Multiply constant 7 with 3.
>>> @
21 / (3 * 5)
>>> @
21 / 15
>>> @
7 / 5
- filter_duplicates does not seem to work anymore...
- Fix error while parsing unicode PI:
...
...
This diff is collapsed.
Click to expand it.
src/strategy.py
+
3
−
2
View file @
dd369030
from
rules.sort
import
move_constant
from
rules.numerics
import
reduce_fraction_constants
from
rules.numerics
import
reduce_fraction_constants
,
fraction_to_int_fraction
def
pick_suggestion
(
possibilities
):
...
...
@@ -8,7 +8,8 @@ def pick_suggestion(possibilities):
# TODO: pick the best suggestion.
for
suggestion
,
p
in
enumerate
(
possibilities
+
[
None
]):
if
p
and
p
.
handler
not
in
[
move_constant
,
reduce_fraction_constants
]:
if
p
and
p
.
handler
not
in
[
move_constant
,
fraction_to_int_fraction
,
reduce_fraction_constants
]:
break
if
not
p
:
...
...
This diff is collapsed.
Click to expand it.
tests/test_leiden_oefenopgave.py
+
8
−
4
View file @
dd369030
...
...
@@ -143,14 +143,18 @@ class TestLeidenOefenopgave(TestCase):
self
.
assertRewrite
([
'
2/7 - 4/11
'
,
'
22 / 77 - 28 / 77
'
,
'
(22 - 28) / 77
'
,
'
-6 / 77
'
])
#def test_4_3(self):
# self.assertRewrite(['(7/3) * (3/5)', '7 / 5'])
def
test_4_3
(
self
):
self
.
assertRewrite
([
'
(7/3) * (3/5)
'
,
'
7 * 3 / (3 * 5)
'
,
'
21 / (3 * 5)
'
,
'
21 / 15
'
,
'
7 / 5
'
])
#def test_4_4(self):
# self.assertRewrite(['(3/4) / (5/6)', '9 / 10'])
#
def test_4_5(self):
#
self.assertRewrite(['1/4 * 1/x', '1 / (4x)'])
def
test_4_5
(
self
):
self
.
assertRewrite
([
'
1/4 * 1/x
'
,
'
1 /
4 / x
'
,
])
# FIXME: '1 /
(4x)'])
#def test_4_6(self):
# self.assertRewrite(['(3/x^2) / (x/7)', '21 / x^3'])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment