2013-08-09 09:35:14 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
2014-11-09 11:06:31 +00:00
|
|
|
from .generic import Stack, flatten_list, expand_list, isNumber, isOperator
|
2014-11-11 07:29:19 +00:00
|
|
|
from .render import txt, tex
|
2014-11-09 11:06:31 +00:00
|
|
|
from .str2tokens import str2tokens
|
2013-11-01 21:58:42 +00:00
|
|
|
|
2014-02-27 17:02:34 +00:00
|
|
|
__all__ = ['Expression']
|
|
|
|
|
2013-08-09 09:35:14 +00:00
|
|
|
class Expression(object):
|
|
|
|
"""A calculus expression. Today it can andle only expression with numbers later it will be able to manipulate unknown"""
|
|
|
|
|
2014-08-29 14:35:38 +00:00
|
|
|
STR_RENDER = tex
|
2013-08-09 11:08:24 +00:00
|
|
|
|
2013-08-09 09:35:14 +00:00
|
|
|
def __init__(self, exp):
|
2013-11-01 11:42:42 +00:00
|
|
|
""" Initiate the expression
|
2013-08-09 09:35:14 +00:00
|
|
|
|
2014-11-08 17:15:04 +00:00
|
|
|
:param exp: the expression. It can be a string or a list of postfix tokens.
|
2013-08-09 09:35:14 +00:00
|
|
|
"""
|
2013-11-01 21:58:42 +00:00
|
|
|
if type(exp) == str:
|
2014-11-11 08:44:39 +00:00
|
|
|
#self._exp = exp
|
2014-11-08 17:15:04 +00:00
|
|
|
self.postfix_tokens = str2tokens(exp) # les tokens seront alors stockés dans self.tokens temporairement
|
2013-11-01 21:58:42 +00:00
|
|
|
elif type(exp) == list:
|
2014-11-08 17:15:04 +00:00
|
|
|
self.postfix_tokens = exp
|
2013-11-01 21:58:42 +00:00
|
|
|
|
2014-01-17 11:48:48 +00:00
|
|
|
def __str__(self):
|
2014-08-29 14:35:38 +00:00
|
|
|
"""
|
|
|
|
Overload str
|
|
|
|
If you want to changer render set Expression.RENDER
|
|
|
|
"""
|
|
|
|
return self.STR_RENDER(self.postfix_tokens)
|
2014-01-17 11:48:48 +00:00
|
|
|
|
|
|
|
def render(self, render = lambda x:str(x)):
|
|
|
|
""" Same as __str__ but accept render as argument
|
2014-01-17 19:17:49 +00:00
|
|
|
:param render: function which render the list of token (postfix form) to string
|
2014-01-17 11:48:48 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
# TODO: I don't like the name of this method |ven. janv. 17 12:48:14 CET 2014
|
|
|
|
return render(self.postfix_tokens)
|
|
|
|
|
2013-11-01 21:58:42 +00:00
|
|
|
## ---------------------
|
|
|
|
## Mechanism functions
|
|
|
|
|
2014-08-29 15:15:29 +00:00
|
|
|
def simplify(self):
|
|
|
|
""" Generator which return steps for computing the expression """
|
2013-11-01 21:58:42 +00:00
|
|
|
if not self.can_go_further():
|
2014-08-29 15:15:29 +00:00
|
|
|
yield self.STR_RENDER(self.postfix_tokens)
|
2013-08-09 10:03:32 +00:00
|
|
|
else:
|
2013-11-02 15:36:08 +00:00
|
|
|
self.compute_exp()
|
2013-11-16 20:39:13 +00:00
|
|
|
old_s = ''
|
2013-11-01 21:58:42 +00:00
|
|
|
for s in self.steps:
|
2014-08-29 15:15:29 +00:00
|
|
|
new_s = self.STR_RENDER(s)
|
2013-11-17 08:38:33 +00:00
|
|
|
# Astuce pour éviter d'avoir deux fois la même étape (par exemple pour la transfo d'une division en fraction)
|
2013-11-16 20:39:13 +00:00
|
|
|
if new_s != old_s:
|
|
|
|
old_s = new_s
|
|
|
|
yield new_s
|
2014-08-29 15:15:29 +00:00
|
|
|
for s in self.child.simplify():
|
2013-11-17 08:38:33 +00:00
|
|
|
if old_s != s:
|
|
|
|
yield s
|
2013-11-01 21:58:42 +00:00
|
|
|
|
|
|
|
def can_go_further(self):
|
2013-11-02 15:36:08 +00:00
|
|
|
"""Check whether it's a last step or not. If not create self.child the next expression.
|
2013-11-01 21:58:42 +00:00
|
|
|
:returns: 1 if it's not the last step, 0 otherwise
|
|
|
|
"""
|
2014-11-08 17:15:04 +00:00
|
|
|
if len(self.postfix_tokens) == 1:
|
2013-11-01 21:58:42 +00:00
|
|
|
return 0
|
|
|
|
else:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def compute_exp(self):
|
2013-11-02 15:36:08 +00:00
|
|
|
""" Create self.child with self.steps to go up to it """
|
2013-11-01 21:58:42 +00:00
|
|
|
self.steps = [self.postfix_tokens]
|
|
|
|
|
|
|
|
tokenList = self.postfix_tokens.copy()
|
|
|
|
tmpTokenList = []
|
|
|
|
|
|
|
|
while len(tokenList) > 2:
|
2014-11-08 17:15:04 +00:00
|
|
|
# on va chercher les motifs du genre A B +, quand l'operateur est d'arité 2, pour les calculer
|
|
|
|
if isNumber(tokenList[0]) and isNumber(tokenList[1]) \
|
|
|
|
and isOperator(tokenList[2]) and tokenList[2].arity == 2 :
|
2013-11-01 21:58:42 +00:00
|
|
|
|
|
|
|
# S'il y a une opération à faire
|
|
|
|
op1 = tokenList[0]
|
|
|
|
op2 = tokenList[1]
|
2014-11-02 07:19:31 +00:00
|
|
|
operator = tokenList[2]
|
2013-11-01 21:58:42 +00:00
|
|
|
|
2014-11-02 07:19:31 +00:00
|
|
|
res = operator(op1, op2)
|
2013-11-01 21:58:42 +00:00
|
|
|
|
|
|
|
tmpTokenList.append(res)
|
|
|
|
|
|
|
|
# Comme on vient de faire le calcul, on peut détruire aussi les deux prochains termes
|
|
|
|
del tokenList[0:3]
|
2014-11-02 07:19:31 +00:00
|
|
|
|
2014-11-08 17:15:04 +00:00
|
|
|
# Et les motifs du gens - A, quand l'operateur est d'arité 1
|
|
|
|
elif isNumber(tokenList[0]) \
|
|
|
|
and isOperator(tokenList[1]) and tokenList[2].arity == 1:
|
2014-11-02 07:19:31 +00:00
|
|
|
|
|
|
|
# S'il y a une opération à faire
|
|
|
|
op1 = tokenList[0]
|
|
|
|
operator = tokenList[1]
|
|
|
|
|
|
|
|
res = operator(op1)
|
|
|
|
|
|
|
|
tmpTokenList.append(res)
|
|
|
|
|
|
|
|
# Comme on vient de faire le calcul, on peut détruire aussi les deux prochains termes
|
|
|
|
del tokenList[0:2]
|
|
|
|
|
2013-11-01 21:58:42 +00:00
|
|
|
else:
|
|
|
|
tmpTokenList.append(tokenList[0])
|
|
|
|
|
|
|
|
del tokenList[0]
|
|
|
|
tmpTokenList += tokenList
|
|
|
|
|
2013-11-02 15:36:08 +00:00
|
|
|
steps = expand_list(tmpTokenList)
|
2013-11-01 21:58:42 +00:00
|
|
|
|
2013-11-02 15:47:47 +00:00
|
|
|
if len(steps[:-1]) > 0:
|
2013-11-16 19:50:42 +00:00
|
|
|
self.steps += [flatten_list(s) for s in steps[:-1]]
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2013-11-02 15:36:08 +00:00
|
|
|
self.child = Expression(steps[-1])
|
2013-11-01 11:42:42 +00:00
|
|
|
|
|
|
|
|
2013-11-02 15:47:47 +00:00
|
|
|
def test(exp):
|
|
|
|
a = Expression(exp)
|
2014-11-11 08:44:39 +00:00
|
|
|
print(a)
|
|
|
|
#for i in a.simplify():
|
|
|
|
# print(i)
|
2013-08-09 09:35:14 +00:00
|
|
|
|
2013-11-08 09:05:28 +00:00
|
|
|
print("\n")
|
|
|
|
|
2013-11-02 15:47:47 +00:00
|
|
|
if __name__ == '__main__':
|
2014-09-02 09:44:04 +00:00
|
|
|
Expression.STR_RENDER = txt
|
2014-11-02 07:19:31 +00:00
|
|
|
exp = "2 ^ 3 * 5"
|
|
|
|
test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-11-11 08:44:39 +00:00
|
|
|
from pymath.operator import add, pw, mul
|
|
|
|
exp = [2, 3, pw, 5, mul]
|
|
|
|
test(exp)
|
|
|
|
|
2014-11-02 07:19:31 +00:00
|
|
|
exp = "1 + 3 * 5"
|
|
|
|
test(exp)
|
2014-01-17 19:17:49 +00:00
|
|
|
|
2013-11-08 09:05:28 +00:00
|
|
|
#exp = "2 * 3 * 3 * 5"
|
|
|
|
#test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp = "2 * 3 + 3 * 5"
|
|
|
|
#test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp = "2 * ( 3 + 4 ) + 3 * 5"
|
|
|
|
#test(exp)
|
2013-11-08 09:05:28 +00:00
|
|
|
|
2013-11-02 15:47:47 +00:00
|
|
|
#exp = "2 * ( 3 + 4 ) + ( 3 - 4 ) * 5"
|
|
|
|
#test(exp)
|
|
|
|
#
|
|
|
|
#exp = "2 * ( 2 - ( 3 + 4 ) ) + ( 3 - 4 ) * 5"
|
|
|
|
#test(exp)
|
|
|
|
#
|
|
|
|
#exp = "2 * ( 2 - ( 3 + 4 ) ) + 5 * ( 3 - 4 )"
|
|
|
|
#test(exp)
|
|
|
|
#
|
|
|
|
#exp = "2 + 5 * ( 3 - 4 )"
|
|
|
|
#test(exp)
|
2013-11-08 09:05:28 +00:00
|
|
|
|
2014-01-28 19:52:38 +00:00
|
|
|
#exp = "( 2 + 5 ) * ( 3 - 4 )^4"
|
2013-11-17 07:53:05 +00:00
|
|
|
#test(exp)
|
2013-11-08 09:05:28 +00:00
|
|
|
|
2013-11-17 07:53:05 +00:00
|
|
|
#exp = "( 2 + 5 ) * ( 3 * 4 )"
|
|
|
|
#test(exp)
|
2013-11-08 09:05:28 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp = "( 2 + 5 - 1 ) / ( 3 * 4 )"
|
|
|
|
#test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp = "( 2 + 5 ) / ( 3 * 4 ) + 1 / 12"
|
|
|
|
#test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp = "( 2+ 5 )/( 3 * 4 ) + 1 / 2"
|
|
|
|
#test(exp)
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp="(-2+5)/(3*4)+1/12+5*5"
|
|
|
|
#test(exp)
|
2014-01-15 15:41:51 +00:00
|
|
|
|
2014-01-28 19:52:38 +00:00
|
|
|
#exp="-2*4(12 + 1)(3-12)"
|
2014-01-19 17:38:15 +00:00
|
|
|
#test(exp)
|
2014-01-28 19:52:38 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
|
2014-01-17 19:17:49 +00:00
|
|
|
#exp="(-2+5)/(3*4)+1/12+5*5"
|
|
|
|
#test(exp)
|
|
|
|
|
2014-01-17 13:57:45 +00:00
|
|
|
# TODO: The next one doesn't work |ven. janv. 17 14:56:58 CET 2014
|
|
|
|
#exp="-2*(-a)(12 + 1)(3-12)"
|
|
|
|
#e = Expression(exp)
|
|
|
|
#print(e)
|
|
|
|
|
2014-01-15 15:54:33 +00:00
|
|
|
## Can't handle it yet!!
|
|
|
|
#exp="-(-2)"
|
|
|
|
#test(exp)
|
|
|
|
|
2014-11-08 17:15:04 +00:00
|
|
|
#import doctest
|
|
|
|
#doctest.testmod()
|
2013-11-02 15:47:47 +00:00
|
|
|
|
2013-08-09 09:35:14 +00:00
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|