2014-11-02 07:19:31 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
|
2014-11-09 11:06:31 +00:00
|
|
|
from .generic import flatten_list, isNumber
|
2015-04-03 12:49:55 +00:00
|
|
|
from functools import wraps
|
2014-12-02 10:06:29 +00:00
|
|
|
import types
|
2014-11-02 10:17:12 +00:00
|
|
|
|
2014-12-02 10:06:29 +00:00
|
|
|
class Operator(str):
|
2014-11-02 07:19:31 +00:00
|
|
|
|
|
|
|
"""The operator class, is a string (representation of the operator) with its arity"""
|
|
|
|
|
2014-12-02 10:32:59 +00:00
|
|
|
def __new__(cls, operator = "", name = "", priority = 0, actions = ("",""), txt = "", tex = "", arity = 2):
|
2014-12-02 09:05:02 +00:00
|
|
|
""" Create an Operator """
|
2014-12-02 10:06:29 +00:00
|
|
|
#def __new__(cls, operator, arity = 2):
|
|
|
|
op = str.__new__(cls, operator)
|
2014-12-02 10:32:59 +00:00
|
|
|
op.operator = operator
|
|
|
|
op.name = name
|
2014-12-02 10:06:29 +00:00
|
|
|
op.arity = arity
|
|
|
|
op.priority = priority
|
|
|
|
op.actions = actions
|
|
|
|
op.txt = txt
|
|
|
|
op.tex = tex
|
|
|
|
|
|
|
|
op.isOperator = 1
|
2014-12-02 09:05:02 +00:00
|
|
|
# TODO: Add self.visibility |sam. nov. 8 17:00:08 CET 2014
|
2014-12-02 10:06:29 +00:00
|
|
|
return op
|
2014-11-02 07:19:31 +00:00
|
|
|
|
|
|
|
def __call__(self, *args):
|
|
|
|
""" Calling this operator performs the rigth calculus """
|
2014-12-02 13:31:27 +00:00
|
|
|
return self._call(*args)
|
|
|
|
|
|
|
|
|
|
|
|
def _call(self, *args):
|
|
|
|
"""Trick to avoid overloading __call__ """
|
2014-11-02 07:19:31 +00:00
|
|
|
if self.arity == 1:
|
|
|
|
return getattr(args[0], self.actions)()
|
|
|
|
|
|
|
|
elif self.arity == 2:
|
2014-11-24 06:17:51 +00:00
|
|
|
if type(args[1]) == int:
|
|
|
|
return getattr(args[0], self.actions[0])(args[1])
|
2014-11-02 07:19:31 +00:00
|
|
|
else:
|
2014-11-24 06:17:51 +00:00
|
|
|
return getattr(args[1], self.actions[1])(args[0])
|
|
|
|
|
|
|
|
def _render(self, link, *args):
|
|
|
|
"""Global step for __txt__ and __tex__
|
|
|
|
|
|
|
|
:param link: the link between operators
|
|
|
|
:param *args: the operands
|
|
|
|
:returns: the string with operator and operands
|
|
|
|
|
|
|
|
"""
|
2015-03-07 18:26:26 +00:00
|
|
|
if self.arity == 1:
|
|
|
|
op1 = self.l_parenthesis(args[0], True)
|
|
|
|
ans = link.format(op1 = op1)
|
|
|
|
|
|
|
|
elif self.arity == 2:
|
2015-03-07 18:35:34 +00:00
|
|
|
op1 = self.l_parenthesis(args[0], True)
|
|
|
|
op2 = self.r_parenthesis(args[1], True)
|
2015-03-07 18:26:26 +00:00
|
|
|
ans = link.format(op1 = op1, op2 = op2)
|
|
|
|
|
2014-11-24 06:17:51 +00:00
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
2014-11-02 07:19:31 +00:00
|
|
|
|
2014-11-09 09:35:49 +00:00
|
|
|
def __txt__(self, *args):
|
|
|
|
"""Txt rendering for the operator
|
|
|
|
|
|
|
|
:*args: Operands for this operation
|
|
|
|
:returns: String with operator and his operands
|
|
|
|
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.mul.__txt__('1','2')
|
2014-11-09 09:35:49 +00:00
|
|
|
'1 * 2'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.add.__txt__('1','2')
|
2014-11-09 09:35:49 +00:00
|
|
|
'1 + 2'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('2 + 3',op.add)
|
|
|
|
>>> op.mul.__txt__(f, '4')
|
2014-11-09 09:35:49 +00:00
|
|
|
'( 2 + 3 ) * 4'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('-3',op.sub1)
|
|
|
|
>>> op.sub1.__txt__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( -3 )'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.sub1.__txt__('-3')
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( -3 )'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('2 + 3',op.add)
|
|
|
|
>>> op.sub1.__txt__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( 2 + 3 )'
|
|
|
|
"""
|
2014-12-02 09:05:02 +00:00
|
|
|
return self._render(self.txt, *args)
|
2014-11-09 09:35:49 +00:00
|
|
|
|
|
|
|
def __tex__(self, *args):
|
|
|
|
"""Tex rendering for the operator
|
|
|
|
|
|
|
|
:*args: Operands for this operation
|
|
|
|
:returns: String with operator and his operands
|
|
|
|
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.mul.__tex__('1','2')
|
2014-11-09 09:35:49 +00:00
|
|
|
'1 \\\\times 2'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.add.__tex__('1','2')
|
2014-11-09 09:35:49 +00:00
|
|
|
'1 + 2'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('2 + 3',op.add)
|
|
|
|
>>> op.mul.__tex__(f, '4')
|
2014-11-09 09:35:49 +00:00
|
|
|
'( 2 + 3 ) \\\\times 4'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('-3',op.sub1)
|
|
|
|
>>> op.sub1.__tex__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( -3 )'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.sub1.__tex__('-3')
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( -3 )'
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp('2 + 3',op.add)
|
|
|
|
>>> op.sub1.__tex__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
'- ( 2 + 3 )'
|
|
|
|
"""
|
2014-12-02 09:05:02 +00:00
|
|
|
return self._render(self.tex, *args)
|
2014-11-09 09:35:49 +00:00
|
|
|
|
|
|
|
def __p2i__(self, *args):
|
|
|
|
"""Fix list transformation for the operator
|
|
|
|
|
|
|
|
:*args: Operands for this operation
|
|
|
|
:returns: list with the operator surrounded by operands
|
|
|
|
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.mul.__p2i__(1,2)
|
2014-11-09 09:35:49 +00:00
|
|
|
[1, '*', 2]
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp([2, op.add, 3],op.add)
|
|
|
|
>>> op.mul.__p2i__(f, 4)
|
2014-11-09 09:35:49 +00:00
|
|
|
['(', 2, '+', 3, ')', '*', 4]
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp([op.sub1, 3],op.sub1)
|
|
|
|
>>> op.sub1.__p2i__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
['-', '(', '-', 3, ')']
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> op.sub1.__p2i__(-3)
|
2014-11-09 09:35:49 +00:00
|
|
|
['-', '(', -3, ')']
|
2014-11-25 09:46:00 +00:00
|
|
|
>>> f = save_mainOp([2, op.add, 3],op.add)
|
|
|
|
>>> op.sub1.__p2i__(f)
|
2014-11-09 09:35:49 +00:00
|
|
|
['-', '(', 2, '+', 3, ')']
|
|
|
|
"""
|
|
|
|
if self.arity == 1:
|
2015-03-07 18:26:26 +00:00
|
|
|
op1 = self.l_parenthesis(args[0])
|
2014-11-09 09:39:24 +00:00
|
|
|
ans = flatten_list([self, op1])
|
2014-11-09 09:35:49 +00:00
|
|
|
|
|
|
|
elif self.arity == 2:
|
2015-03-07 18:26:26 +00:00
|
|
|
op1 = self.l_parenthesis(args[0])
|
|
|
|
op2 = self.r_parenthesis(args[1])
|
2014-11-09 09:39:24 +00:00
|
|
|
ans = flatten_list([op1, self, op2])
|
|
|
|
|
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
2014-11-09 09:35:49 +00:00
|
|
|
|
2015-03-10 10:59:27 +00:00
|
|
|
def l_parenthesis(self, opl, str_join=False):
|
|
|
|
""" Add parenthesis for left operand if necessary """
|
|
|
|
ans = opl
|
|
|
|
try:
|
2015-04-27 17:09:03 +00:00
|
|
|
# TODO: Je pige pas pourquoi quand on enlève .name ça marche plus... |lun. avril 27 19:07:24 CEST 2015
|
|
|
|
if opl.mainOp.name == op.sub1.name:
|
2015-03-10 10:59:27 +00:00
|
|
|
ans = opl
|
|
|
|
elif opl.mainOp.priority < self.priority:
|
|
|
|
ans = flatten_list(["(", opl, ")"])
|
|
|
|
except AttributeError as e:
|
|
|
|
# op has not the attribute priority
|
|
|
|
pass
|
|
|
|
|
|
|
|
ans = flatten_list([ans])
|
|
|
|
if str_join:
|
|
|
|
ans = ' '.join([str(i) for i in ans])
|
|
|
|
return ans
|
|
|
|
|
|
|
|
def r_parenthesis(self, op, str_join=False):
|
2015-04-27 17:09:03 +00:00
|
|
|
""" Add parenthesis for rigth operand if necessary """
|
2014-11-09 09:35:49 +00:00
|
|
|
try:
|
|
|
|
if op.mainOp.priority < self.priority:
|
2015-03-07 17:23:10 +00:00
|
|
|
op = flatten_list(["(", op, ")"])
|
2014-11-09 09:35:49 +00:00
|
|
|
except AttributeError:
|
2014-11-24 06:17:51 +00:00
|
|
|
# op has not the attribute priority
|
2014-11-09 11:06:31 +00:00
|
|
|
try:
|
|
|
|
if int(op) < 0:
|
|
|
|
op = ['(', op, ')']
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2015-03-07 18:26:26 +00:00
|
|
|
ans = flatten_list([op])
|
|
|
|
if str_join:
|
|
|
|
ans = ' '.join([str(i) for i in ans])
|
|
|
|
return ans
|
|
|
|
|
2014-11-09 09:35:49 +00:00
|
|
|
def save_mainOp(obj, mainOp):
|
|
|
|
"""Create a temporary class build over built-in type to stock the main operation of a calculus
|
|
|
|
|
|
|
|
:obj: the object to add the attribute
|
|
|
|
:mainOp: the main operator
|
|
|
|
:returns: the same object with the main operation attribute
|
|
|
|
"""
|
2014-12-22 10:53:32 +00:00
|
|
|
Fake = type('fake_'+str(type(obj)), (type(obj),), {'mainOp': mainOp})
|
2014-11-09 09:35:49 +00:00
|
|
|
|
|
|
|
return Fake(obj)
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
def operatorize(fun):
|
|
|
|
"""Transform the answer of the function into an operator
|
|
|
|
|
|
|
|
The returned value of the function has to be a dictionnary with those keys
|
|
|
|
* "operator": the name (Needed!)
|
|
|
|
* "priority": the priority level
|
2014-12-02 13:31:27 +00:00
|
|
|
* "actions": mathematics actions of the operator (list of 1 element if the arity is 1, 2 elements if arity is 2)
|
2014-12-02 09:05:02 +00:00
|
|
|
* "txt": string ready to be formated in txt for with {op1} and/or {op2}
|
|
|
|
* "tex": string ready to be formated in tex for with {op1} and/or {op2}
|
|
|
|
* "arity": arity ie number of operands needed
|
2014-12-02 13:31:27 +00:00
|
|
|
* "_call": action to perform when call the operator
|
2014-12-02 09:05:02 +00:00
|
|
|
* "_render": action use in __txt__ and __tex__
|
|
|
|
* "__txt__": txt rendering
|
|
|
|
* "__tex__": tex rendering
|
2015-03-07 18:26:26 +00:00
|
|
|
* "l_parenthesis": mechanism to add parenthesis for left operande
|
|
|
|
* "r_parenthesis": mechanism to add parenthesis for rigth operande
|
2014-12-02 09:05:02 +00:00
|
|
|
"""
|
2015-04-03 12:49:55 +00:00
|
|
|
@wraps(fun)
|
2014-12-02 09:05:02 +00:00
|
|
|
def mod_fun(self, *args):
|
|
|
|
ans = fun(self, *args)
|
|
|
|
|
2015-04-27 17:09:03 +00:00
|
|
|
def _eq(op1, op2):
|
|
|
|
""" op1 == op2 """
|
|
|
|
return op1.name == op2.name == name and op1.arity == op2.arity
|
|
|
|
|
|
|
|
ans["__eq__"] = _eq
|
|
|
|
|
2014-12-02 13:31:27 +00:00
|
|
|
new_op = Operator(ans["operator"])
|
2014-12-02 09:05:02 +00:00
|
|
|
for (attr, value) in ans.items():
|
|
|
|
if hasattr(value, '__call__'):
|
2014-12-02 13:31:27 +00:00
|
|
|
setattr(new_op, attr, types.MethodType(value, new_op))
|
2014-12-02 09:05:02 +00:00
|
|
|
else:
|
2014-12-02 13:31:27 +00:00
|
|
|
setattr(new_op, attr, value)
|
2014-12-02 10:32:59 +00:00
|
|
|
|
2014-12-02 13:31:27 +00:00
|
|
|
return new_op
|
2014-12-02 09:05:02 +00:00
|
|
|
return mod_fun
|
|
|
|
|
|
|
|
class ClassProperty(object):
|
|
|
|
|
|
|
|
def __init__(self, fget):
|
|
|
|
self.fget = fget
|
|
|
|
|
|
|
|
def __get__(self, owner_self, owner_cls):
|
|
|
|
return self.fget(owner_cls)
|
|
|
|
|
|
|
|
class op(object):
|
|
|
|
""" List of admited operations """
|
|
|
|
|
2014-12-02 10:32:59 +00:00
|
|
|
_operators = {("+",2): "add",\
|
|
|
|
("-", 2): "sub",\
|
|
|
|
("-", 1): "sub1",\
|
|
|
|
("*", 2): "mul",\
|
|
|
|
("/", 2): "div",\
|
|
|
|
("^", 2): "pw",\
|
2014-12-02 11:37:23 +00:00
|
|
|
("(", 2): "par",\
|
2014-12-02 10:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_op(cls, op, arity = 2):
|
|
|
|
"""Return the corresponding operator
|
|
|
|
|
|
|
|
:op: symbole of the op
|
|
|
|
:arity: the arity
|
2014-12-03 15:25:02 +00:00
|
|
|
|
|
|
|
>>> op.get_op('+')
|
|
|
|
'+'
|
|
|
|
>>> mul = op.get_op('*')
|
|
|
|
>>> mul.tex
|
|
|
|
'{op1} \\\\times {op2}'
|
|
|
|
>>> mul.txt
|
|
|
|
'{op1} * {op2}'
|
2014-12-02 10:32:59 +00:00
|
|
|
"""
|
2014-12-03 15:25:02 +00:00
|
|
|
try:
|
|
|
|
return getattr(cls, cls._operators[(op, arity)])
|
|
|
|
except KeyError:
|
|
|
|
raise KeyError("{theOp} (arity: {arity}) is not available".format(theOp = op, arity = arity))
|
2014-12-02 10:32:59 +00:00
|
|
|
|
2014-12-02 11:37:23 +00:00
|
|
|
@classmethod
|
|
|
|
def can_be_operator(cls, symbole):
|
|
|
|
""" Tell if the symbole can be an operator """
|
|
|
|
return symbole in [i[0] for i in cls._operators]
|
|
|
|
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def add(cls):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator +
|
|
|
|
|
2015-04-03 12:49:55 +00:00
|
|
|
For doctest see test/test_operator.py
|
|
|
|
|
2014-12-03 15:25:02 +00:00
|
|
|
"""
|
2015-03-28 08:09:32 +00:00
|
|
|
|
|
|
|
def _render(self, link, *args):
|
|
|
|
"""Global step for __txt__ and __tex__
|
|
|
|
|
|
|
|
:param link: the link between operators
|
|
|
|
:param *args: the operands
|
|
|
|
:returns: the string with operator and operands
|
|
|
|
|
|
|
|
"""
|
|
|
|
if args[1][0] == "-":
|
|
|
|
op1 = self.l_parenthesis(args[0], True)
|
|
|
|
op2 = self.r_parenthesis(args[1][1:], True)
|
|
|
|
ans = link.replace('+','-').format(op1 = op1, op2 = op2)
|
|
|
|
|
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
|
|
|
else:
|
|
|
|
op1 = self.l_parenthesis(args[0], True)
|
|
|
|
op2 = self.r_parenthesis(args[1], True)
|
|
|
|
ans = link.format(op1 = op1, op2 = op2)
|
|
|
|
|
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
caract = {
|
|
|
|
"operator" : "+", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "add",\
|
2014-12-02 09:05:02 +00:00
|
|
|
"priority" : 1, \
|
|
|
|
"arity" : 2, \
|
2014-12-02 13:31:27 +00:00
|
|
|
"actions" : ("__add__","__radd__"), \
|
2014-12-02 09:05:02 +00:00
|
|
|
"txt" : "{op1} + {op2}",\
|
|
|
|
"tex" : "{op1} + {op2}",\
|
2015-03-28 08:09:32 +00:00
|
|
|
"_render": _render,\
|
2014-12-02 09:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def sub(self):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator -
|
|
|
|
|
|
|
|
>>> sub = op.sub
|
|
|
|
>>> sub
|
|
|
|
'-'
|
|
|
|
>>> sub(1, 2)
|
|
|
|
-1
|
|
|
|
>>> sub.__tex__('1','2')
|
|
|
|
'1 - 2'
|
|
|
|
>>> sub.__txt__('1','2')
|
|
|
|
'1 - 2'
|
|
|
|
>>> sub.__tex__('1','-2')
|
|
|
|
'1 - (-2)'
|
2015-03-07 18:35:34 +00:00
|
|
|
>>> sub.__tex__('-1','2')
|
2015-04-03 12:49:55 +00:00
|
|
|
'-1 - 2'
|
2014-12-03 15:25:02 +00:00
|
|
|
"""
|
2015-03-07 18:35:34 +00:00
|
|
|
def l_parenthesis(self, op, str_join=False):
|
|
|
|
return op
|
2015-03-08 22:56:59 +00:00
|
|
|
|
|
|
|
def r_parenthesis(self, op, str_join=False):
|
|
|
|
try:
|
|
|
|
if op.mainOp.priority <= self.priority:
|
|
|
|
op = flatten_list(["(", op, ")"])
|
2015-03-28 08:09:32 +00:00
|
|
|
elif op[0] == '-':
|
|
|
|
op = flatten_list(["(", op, ")"])
|
2015-03-08 22:56:59 +00:00
|
|
|
except AttributeError:
|
|
|
|
# op has not the attribute priority
|
|
|
|
try:
|
|
|
|
if int(op) < 0:
|
|
|
|
op = ['(', op, ')']
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
ans = flatten_list([op])
|
|
|
|
if str_join:
|
|
|
|
ans = ' '.join([str(i) for i in ans])
|
|
|
|
return ans
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
caract = {
|
|
|
|
"operator" : "-", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "sub",\
|
2015-03-07 17:23:10 +00:00
|
|
|
"priority" : 2, \
|
2014-12-02 09:05:02 +00:00
|
|
|
"arity" : 2, \
|
2014-12-02 13:31:27 +00:00
|
|
|
"actions" : ("__sub__","__rsub__"), \
|
2014-12-02 09:05:02 +00:00
|
|
|
"txt" : "{op1} - {op2}",\
|
|
|
|
"tex" : "{op1} - {op2}",\
|
2015-03-07 18:35:34 +00:00
|
|
|
"l_parenthesis": l_parenthesis,\
|
2015-03-08 22:56:59 +00:00
|
|
|
"r_parenthesis": r_parenthesis,\
|
2014-12-02 09:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def sub1(self):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator -
|
|
|
|
|
|
|
|
>>> sub1 = op.sub1
|
|
|
|
>>> sub1
|
|
|
|
'-'
|
|
|
|
>>> sub1(1)
|
|
|
|
-1
|
|
|
|
>>> sub1.__tex__('1')
|
|
|
|
'- 1'
|
|
|
|
>>> sub1.__txt__('1')
|
|
|
|
'- 1'
|
|
|
|
>>> sub1.__tex__('-1')
|
|
|
|
'- (-1)'
|
|
|
|
"""
|
2015-03-07 18:26:26 +00:00
|
|
|
def l_parenthesis(self, op, str_join=False):
|
2014-12-02 09:05:02 +00:00
|
|
|
""" Add parenthesis if necessary """
|
|
|
|
try:
|
|
|
|
if op.mainOp.priority <= self.priority:
|
|
|
|
op = flatten_list(["("] + [op] + [")"])
|
|
|
|
except AttributeError:
|
|
|
|
# op has not the attribute priority
|
|
|
|
try:
|
|
|
|
if int(op) < 0:
|
|
|
|
op = ['(', op, ')']
|
|
|
|
except ValueError:
|
|
|
|
pass
|
2015-03-07 18:26:26 +00:00
|
|
|
|
|
|
|
ans = flatten_list([op])
|
|
|
|
if str_join:
|
|
|
|
ans = ' '.join([str(i) for i in ans])
|
|
|
|
return ans
|
2014-12-02 09:05:02 +00:00
|
|
|
|
|
|
|
caract = {
|
|
|
|
"operator" : "-", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "sub1",\
|
2015-03-07 17:23:10 +00:00
|
|
|
"priority" : 3, \
|
2014-12-02 10:06:29 +00:00
|
|
|
"arity" : 1, \
|
2014-12-02 13:31:27 +00:00
|
|
|
"actions" : "__neg__",\
|
2014-12-02 09:05:02 +00:00
|
|
|
"txt" : "- {op1}",\
|
|
|
|
"tex" : "- {op1}",\
|
2015-03-07 18:26:26 +00:00
|
|
|
"l_parenthesis": l_parenthesis,\
|
2014-12-02 09:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def mul(self):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator *
|
|
|
|
|
|
|
|
>>> mul = op.mul
|
|
|
|
>>> mul
|
|
|
|
'*'
|
|
|
|
>>> mul(1, 2)
|
|
|
|
2
|
|
|
|
>>> mul.__tex__('1','2')
|
|
|
|
'1 \\times 2'
|
2015-03-07 19:04:16 +00:00
|
|
|
>>> mul.__tex__('2','a')
|
|
|
|
'2 a'
|
2014-12-03 15:25:02 +00:00
|
|
|
>>> mul.__txt__('1','2')
|
|
|
|
'1 * 2'
|
2015-03-07 19:04:16 +00:00
|
|
|
>>> mul.__txt__('2','a')
|
|
|
|
'2 a'
|
|
|
|
>>> mul.__txt__('a','2')
|
|
|
|
'a * 2'
|
2014-12-03 15:25:02 +00:00
|
|
|
>>> mul.__tex__('1','-2')
|
|
|
|
'1 \\times (-2)'
|
|
|
|
"""
|
2014-12-02 09:05:02 +00:00
|
|
|
# * can not be display in some cases
|
2015-03-10 10:59:27 +00:00
|
|
|
def is_visible(self, op1, op2):
|
|
|
|
""" Tells whether self has to be visible or not
|
|
|
|
|
|
|
|
:param op1: left operande
|
|
|
|
:param op2: rigth operande
|
|
|
|
|
|
|
|
"""
|
|
|
|
# TODO: À finir!!! |lun. mars 9 00:03:40 CET 2015
|
|
|
|
if type(op2) == int:
|
|
|
|
# op2 est maintenant une chaine de caractères
|
|
|
|
return True
|
|
|
|
elif op2.isdecimal():
|
|
|
|
return True
|
|
|
|
elif op2.isalpha():
|
|
|
|
return False
|
2015-03-10 13:04:04 +00:00
|
|
|
elif op2[0].isdecimal():
|
|
|
|
return True
|
|
|
|
elif op2[0] == "(" and not ("+" in op2 or "-" in op2[3:]):
|
|
|
|
return True
|
|
|
|
# Giga bricolage...
|
|
|
|
elif "frac" in op2:
|
2015-03-10 10:59:27 +00:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
def _render(self, link, *args):
|
|
|
|
|
2015-03-10 10:59:27 +00:00
|
|
|
op1 = self.l_parenthesis(args[0], True)
|
|
|
|
op2 = self.r_parenthesis(args[1], True)
|
2014-12-02 09:05:02 +00:00
|
|
|
|
2015-03-10 10:59:27 +00:00
|
|
|
if not self.is_visible(op1, op2):
|
2015-03-07 18:26:26 +00:00
|
|
|
ans = "{op1} {op2}".format(op1 = op1, op2 = op2)
|
2014-12-02 09:05:02 +00:00
|
|
|
else:
|
2015-03-07 18:26:26 +00:00
|
|
|
ans = link.format(op1 = op1, op2 = op2)
|
2015-03-10 10:59:27 +00:00
|
|
|
|
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
2014-12-02 09:05:02 +00:00
|
|
|
|
|
|
|
caract = {
|
|
|
|
"operator" : "*", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "mul",\
|
2014-12-02 09:05:02 +00:00
|
|
|
"priority" : 4, \
|
|
|
|
"arity" : 2, \
|
2014-12-02 13:31:27 +00:00
|
|
|
"actions" : ("__mul__","__rmul__"), \
|
2014-12-02 09:05:02 +00:00
|
|
|
"txt" : "{op1} * {op2}",\
|
|
|
|
"tex" : "{op1} \\times {op2}",\
|
|
|
|
"visibility": 1,\
|
2015-03-10 10:59:27 +00:00
|
|
|
"_render": _render,\
|
|
|
|
"is_visible": is_visible,\
|
2014-12-02 09:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def div(self):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator /
|
|
|
|
|
|
|
|
>>> div = op.div
|
|
|
|
>>> div
|
|
|
|
'/'
|
|
|
|
>>> div(1, 2)
|
|
|
|
< Fraction 1 / 2>
|
|
|
|
>>> div.__tex__('1','2')
|
|
|
|
'\\frac{ 1 }{ 2 }'
|
|
|
|
>>> div.__tex__('1','2')
|
|
|
|
'\\frac{ -1 }{ 2 }'
|
|
|
|
>>> div.__txt__('1','2')
|
|
|
|
'1 / 2'
|
|
|
|
"""
|
2014-12-02 13:31:27 +00:00
|
|
|
from .fraction import Fraction
|
|
|
|
def _call(self, op1, op2):
|
2014-12-02 09:05:02 +00:00
|
|
|
if op2 == 1:
|
|
|
|
return op1
|
|
|
|
else:
|
|
|
|
return Fraction(op1,op2)
|
|
|
|
|
|
|
|
def __tex__(self, *args):
|
|
|
|
# Pas besoin de parenthèses en plus pour \frac
|
|
|
|
replacement = {"op"+str(i+1): op for (i,op) in enumerate(args)}
|
|
|
|
|
2014-12-03 15:25:02 +00:00
|
|
|
ans = self.tex.format(**replacement)
|
2014-12-02 09:05:02 +00:00
|
|
|
ans = save_mainOp(ans, self)
|
|
|
|
return ans
|
|
|
|
|
|
|
|
caract = {
|
|
|
|
"operator" : "/", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "div",\
|
2014-12-27 15:48:32 +00:00
|
|
|
"priority" : 5, \
|
2014-12-02 09:05:02 +00:00
|
|
|
"arity" : 2, \
|
2014-12-03 15:25:02 +00:00
|
|
|
"txt" : "{op1} / {op2}",\
|
2014-12-02 09:05:02 +00:00
|
|
|
"tex" : "\\frac{{ {op1} }}{{ {op2} }}",\
|
2014-12-02 13:31:27 +00:00
|
|
|
"_call": _call,\
|
2014-12-02 09:05:02 +00:00
|
|
|
"__tex__":__tex__,\
|
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def pw(self):
|
2014-12-03 15:25:02 +00:00
|
|
|
""" The operator ^
|
|
|
|
|
|
|
|
>>> pw = op.pw
|
|
|
|
>>> pw
|
|
|
|
'^'
|
|
|
|
>>> pw(2, 3)
|
|
|
|
8
|
|
|
|
>>> pw.__tex__('2','3')
|
|
|
|
'2^{ 3 }'
|
|
|
|
>>> pw.__txt__('2','3')
|
|
|
|
'2 ^ 3'
|
|
|
|
>>> pw.__txt__('-2','3')
|
|
|
|
'( -2 ) ^ 3'
|
|
|
|
"""
|
2014-12-02 13:31:27 +00:00
|
|
|
def _call(self, op1, op2):
|
|
|
|
""" Calling this operator performs the rigth calculus """
|
|
|
|
return getattr(op1, "__pow__")(op2)
|
|
|
|
|
2015-04-27 17:16:08 +00:00
|
|
|
def l_parenthesis(self, opl, str_join=False):
|
|
|
|
""" Add parenthesis for left operand if necessary """
|
|
|
|
ans = opl
|
|
|
|
try:
|
|
|
|
if opl.mainOp.priority < self.priority:
|
|
|
|
ans = flatten_list(["(", opl, ")"])
|
|
|
|
except AttributeError as e:
|
|
|
|
# op has not the attribute priority
|
|
|
|
pass
|
|
|
|
|
|
|
|
ans = flatten_list([ans])
|
|
|
|
if str_join:
|
|
|
|
ans = ' '.join([str(i) for i in ans])
|
|
|
|
return ans
|
|
|
|
|
2014-12-02 09:05:02 +00:00
|
|
|
caract = {
|
|
|
|
"operator" : "^", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "pw",\
|
2015-03-07 17:23:10 +00:00
|
|
|
"priority" : 6, \
|
2014-12-02 09:05:02 +00:00
|
|
|
"arity" : 2, \
|
2014-12-02 13:31:27 +00:00
|
|
|
"actions" : ("__pow__",""), \
|
2014-12-02 09:05:02 +00:00
|
|
|
"txt" : "{op1} ^ {op2}",\
|
|
|
|
"tex" : "{op1}^{{ {op2} }}",\
|
2015-04-27 17:16:08 +00:00
|
|
|
"l_parenthesis": l_parenthesis,\
|
2014-12-02 13:31:27 +00:00
|
|
|
"_call":_call,\
|
2014-12-02 09:05:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caract
|
|
|
|
|
|
|
|
@ClassProperty
|
|
|
|
@operatorize
|
|
|
|
def par(self):
|
|
|
|
""" The operator ( """
|
|
|
|
caract = {
|
|
|
|
"operator" : "(", \
|
2014-12-02 10:32:59 +00:00
|
|
|
"name" : "par",\
|
2014-12-02 09:05:02 +00:00
|
|
|
"priority" : 0, \
|
|
|
|
"arity" : 0, \
|
|
|
|
}
|
|
|
|
return caract
|
|
|
|
|
2014-11-09 09:35:49 +00:00
|
|
|
if __name__ == '__main__':
|
2015-03-07 19:04:16 +00:00
|
|
|
#print(op.add.__tex__('1','2'))
|
|
|
|
#print(op.mul.__tex__('1','2'))
|
|
|
|
#print(op.sub.__tex__('1','2'))
|
|
|
|
#f = save_mainOp('2 + 3',op.add)
|
|
|
|
#print(op.mul.__txt__(f, '4'))
|
|
|
|
#f = save_mainOp('-3',op.sub1)
|
|
|
|
#print(op.sub1.__txt__(f))
|
|
|
|
#print(op.sub1.__txt__('-3'))
|
|
|
|
#f = save_mainOp('2 + 3',op.add)
|
|
|
|
#print(op.sub1.__txt__(f))
|
|
|
|
|
|
|
|
#from .fraction import Fraction
|
|
|
|
#f = Fraction(1, 2)
|
|
|
|
#print(op.add.__txt__(f.__txt__(),'2'))
|
|
|
|
#print(op.add.__tex__(f.__tex__(),'2'))
|
|
|
|
|
|
|
|
#print("\t op.can_be_operator('+') :" + str(op.can_be_operator('+')))
|
|
|
|
#print("\t op.can_be_operator('t') :" + str(op.can_be_operator('t')))
|
2014-11-09 09:35:49 +00:00
|
|
|
|
2015-04-27 17:09:03 +00:00
|
|
|
print("op.sub.__dict__ -> ", op.sub.__dict__)
|
|
|
|
print(op.sub == op.sub1)
|
2015-03-10 10:59:27 +00:00
|
|
|
#import doctest
|
|
|
|
#doctest.testmod()
|
2014-11-02 07:19:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|