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
b05101ae
Commit
b05101ae
authored
Mar 24, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started implementing integrals.
parent
0a006952
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
21 deletions
+69
-21
src/node.py
src/node.py
+15
-14
src/parser.py
src/parser.py
+53
-7
src/rules/integrals.py
src/rules/integrals.py
+1
-0
No files found.
src/node.py
View file @
b05101ae
...
...
@@ -31,23 +31,24 @@ OP_MOD = 7
# N-ary (functions)
OP_INT
=
8
OP_COMMA
=
9
OP_SQRT
=
10
OP_DER
=
11
OP_LOG
=
12
OP_INT_INDEF
=
9
OP_COMMA
=
10
OP_SQRT
=
11
OP_DER
=
12
OP_LOG
=
13
# Goniometry
OP_SIN
=
1
3
OP_COS
=
1
4
OP_TAN
=
1
5
OP_SIN
=
1
4
OP_COS
=
1
5
OP_TAN
=
1
6
OP_SOLVE
=
1
6
OP_EQ
=
1
7
OP_SOLVE
=
1
7
OP_EQ
=
1
8
OP_POSSIBILITIES
=
1
8
OP_HINT
=
19
OP_REWRITE_ALL
=
2
0
OP_REWRITE
=
2
1
OP_POSSIBILITIES
=
1
9
OP_HINT
=
20
OP_REWRITE_ALL
=
2
1
OP_REWRITE
=
2
2
# Special identifiers
PI
=
'pi'
...
...
@@ -102,7 +103,7 @@ TOKEN_MAP = {
OP_SIN
:
'FUNCTION'
,
OP_COS
:
'FUNCTION'
,
OP_TAN
:
'FUNCTION'
,
OP_INT
:
'
FUNCTION
'
,
OP_INT
:
'
INTEGRAL
'
,
OP_DER
:
'FUNCTION'
,
OP_SOLVE
:
'FUNCTION'
,
OP_LOG
:
'FUNCTION'
,
...
...
src/parser.py
View file @
b05101ae
...
...
@@ -17,7 +17,7 @@ from graph_drawing.graph import generate_graph
from
node
import
ExpressionNode
as
Node
,
ExpressionLeaf
as
Leaf
,
OP_MAP
,
\
OP_DER
,
TOKEN_MAP
,
TYPE_OPERATOR
,
OP_COMMA
,
OP_NEG
,
OP_MUL
,
OP_DIV
,
\
OP_LOG
,
OP_ADD
,
Scope
,
E
,
DEFAULT_LOGARITHM_BASE
,
OP_VALUE_MAP
,
\
SPECIAL_TOKENS
SPECIAL_TOKENS
,
OP_INT
,
OP_INT_INDEF
from
rules
import
RULES
from
strategy
import
pick_suggestion
from
possibilities
import
filter_duplicates
,
apply_suggestion
...
...
@@ -41,6 +41,20 @@ def combine(op, op_type, *nodes):
return
res
def
find_integration_variable
(
exp
):
if
not
exp
.
is_op
(
OP_MUL
):
return
exp
scope
=
Scope
(
exp
)
if
len
(
scope
)
<
3
or
scope
[
-
2
]
!=
'd'
or
not
scope
[
-
1
].
is_identifier
():
return
exp
scope
.
nodes
=
scope
[:
-
2
]
return
scope
.
as_nary_node
()
class
Parser
(
BisonParser
):
"""
Implements the calculator parser. Grammar rules are defined in the method
...
...
@@ -48,9 +62,8 @@ class Parser(BisonParser):
"""
# Words to be ignored by preprocessor
words
=
zip
(
*
filter
(
lambda
(
s
,
op
):
TOKEN_MAP
[
op
]
==
'FUNCTION'
,
\
OP_MAP
.
iteritems
()))[
0
]
\
+
(
'raise'
,
'graph'
)
+
tuple
(
SPECIAL_TOKENS
)
words
=
tuple
(
filter
(
lambda
w
:
len
(
w
)
>
1
,
OP_MAP
.
iterkeys
()))
\
+
(
'raise'
,
'graph'
)
+
tuple
(
SPECIAL_TOKENS
)
# Output directory of generated pybison files, including a trailing slash.
buildDirectory
=
PYBISON_BUILD
+
'/'
...
...
@@ -62,7 +75,7 @@ class Parser(BisonParser):
# of tokens of the lex script.
tokens
=
[
'NUMBER'
,
'IDENTIFIER'
,
'NEWLINE'
,
'QUIT'
,
'RAISE'
,
'GRAPH'
,
'LPAREN'
,
'RPAREN'
,
'FUNCTION'
,
'FUNCTION_LPAREN'
,
'LBRACKET'
,
'RBRACKET'
,
'APOSTROPH'
,
'DERIVATIVE'
]
\
'RBRACKET'
,
'APOSTROPH'
,
'DERIVATIVE'
,
'SUB'
]
\
+
filter
(
lambda
t
:
t
!=
'FUNCTION'
,
TOKEN_MAP
.
values
())
# ------------------------------
...
...
@@ -75,7 +88,7 @@ class Parser(BisonParser):
(
'right'
,
(
'FUNCTION'
,
'DERIVATIVE'
)),
(
'left'
,
(
'EQ'
,
)),
(
'left'
,
(
'NEG'
,
)),
(
'right'
,
(
'POW'
,
)),
(
'right'
,
(
'POW'
,
'SUB'
)),
(
'right'
,
(
'FUNCTION_LPAREN'
,
)),
)
...
...
@@ -377,6 +390,7 @@ class Parser(BisonParser):
| FUNCTION exp
| DERIVATIVE exp
| bracket_derivative
| integral
"""
if
option
==
0
:
# rule: NEG exp
...
...
@@ -418,7 +432,7 @@ class Parser(BisonParser):
# DERIVATIVE looks like 'd/d*x*' -> extract the 'x'
return
Node
(
OP_DER
,
values
[
1
],
Leaf
(
values
[
0
][
-
2
]))
if
option
==
4
:
# rule: bracket_derivative
if
option
in
(
4
,
5
):
# rule: bracket_derivative | integral
return
values
[
0
]
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
...
...
@@ -439,6 +453,37 @@ class Parser(BisonParser):
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
def
on_integral
(
self
,
target
,
option
,
names
,
values
):
"""
integral : INTEGRAL exp
"""
#| INTEGRAL SUB exp exp
#| LBRACKET exp RBRACKET SUB exp exp
if
option
==
0
:
# rule: INTEGRAL exp
fx
,
x
=
find_integration_variable
(
values
[
1
])
return
N
(
OP_INT
,
fx
,
x
)
if
option
==
1
:
# rule: INTEGRAL SUB exp exp
if
not
values
[
2
].
is_power
():
# pragma: nocover
raise
BisonSyntaxError
(
'No upper bound specified in "%s".'
%
values
[
2
])
lbnd
,
ubnd
=
values
[
2
]
fx
,
x
=
find_integration_variable
(
values
[
3
])
return
N
(
OP_INT
,
fx
,
x
,
lbnd
,
ubnd
)
if
option
==
2
:
# rule: LBRACKET exp RBRACKET SUB exp POWER exp
exp
=
values
[
1
]
fx
,
x
=
find_integration_variable
(
values
[
1
])
return
N
(
OP_INT_INDEF
,
fx
,
x
,
values
[
4
],
values
[
6
])
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
def
on_binary
(
self
,
target
,
option
,
names
,
values
):
"""
binary : exp PLUS exp
...
...
@@ -541,6 +586,7 @@ class Parser(BisonParser):
d[ ]*"/"[ ]*"d*"[a-z]"*" { returntoken(DERIVATIVE); }
[0-9]+"."?[0-9]* { returntoken(NUMBER); }
[a-zA-Z] { returntoken(IDENTIFIER); }
"_" { returntoken(SUB); }
"(" { returntoken(LPAREN); }
")" { returntoken(RPAREN); }
"[" { returntoken(LBRACKET); }
...
...
src/rules/integrals.py
View file @
b05101ae
...
...
@@ -37,6 +37,7 @@ def choose_constant(integral):
"""
Choose a constant to be added to the antiderivative.
"""
# TODO: comments
occupied
=
find_variables
(
integral
)
c
=
'c'
i
=
96
...
...
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