Added possibility message for add_numerics.

parent d7b3107f
...@@ -3,6 +3,7 @@ from itertools import combinations ...@@ -3,6 +3,7 @@ from itertools import combinations
from .utils import nary_node from .utils import nary_node
from ..node import ExpressionLeaf as Leaf, OP_DIV, OP_MUL from ..node import ExpressionLeaf as Leaf, OP_DIV, OP_MUL
from ..possibilities import Possibility as P, MESSAGES from ..possibilities import Possibility as P, MESSAGES
from ..translate import _
def add_numerics(root, args): def add_numerics(root, args):
...@@ -25,6 +26,10 @@ def add_numerics(root, args): ...@@ -25,6 +26,10 @@ def add_numerics(root, args):
return nary_node('+', scope) return nary_node('+', scope)
MESSAGES[add_numerics] = _('Add the constants {1} and {2}, which'
' will reduce to {1} + {2}.')
#def match_subtract_numerics(node): #def match_subtract_numerics(node):
# """ # """
# 3 - 2 -> 2.0 # 3 - 2 -> 2.0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment