2018-12-07 07:10:15 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# Copyright © 2017 lafrite <lafrite@Poivre>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the MIT license.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Tokens: practical envelop of math object
|
|
|
|
|
|
|
|
"""
|
2018-12-07 09:27:50 +00:00
|
|
|
from ..renders import renders
|
2018-12-07 07:10:15 +00:00
|
|
|
|
|
|
|
class Token(object):
|
|
|
|
|
|
|
|
""" Token: practical envelop of an math object """
|
|
|
|
|
2018-12-07 09:27:50 +00:00
|
|
|
RENDER = 'txt'
|
|
|
|
|
|
|
|
def __init__(self, mo, name="", ancestor = None):
|
2018-12-07 07:10:15 +00:00
|
|
|
self._mo = mo
|
|
|
|
self.name = name
|
|
|
|
self._mathtype = None
|
2018-12-07 09:27:50 +00:00
|
|
|
self._ancestor = ancestor
|
2018-12-07 07:10:15 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def random(cls):
|
|
|
|
raise NotImplemented
|
|
|
|
|
2018-12-07 09:27:50 +00:00
|
|
|
def explain(self):
|
|
|
|
""" Yield every calculus step which have lead to self
|
|
|
|
|
|
|
|
:example:
|
|
|
|
>>> from mapytex.calculus.API import Expression
|
|
|
|
>>> e = Expression.from_str("2+3*4")
|
|
|
|
>>> f = e.simplify()
|
|
|
|
>>> f
|
|
|
|
<Integer 14>
|
|
|
|
>>> for s in f.explain():
|
|
|
|
... print(s)
|
|
|
|
2 + 3 * 4
|
|
|
|
2 + 12
|
|
|
|
14
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
yield from self._ancestor.explain()
|
|
|
|
yield self
|
|
|
|
except AttributeError:
|
|
|
|
yield self
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return f"<{self.__class__.__name__} {self.__txt__}>"
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return renders[self.RENDER](self._mo)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def __txt__(self):
|
|
|
|
return self._mo.__txt__
|
|
|
|
|
|
|
|
@property
|
|
|
|
def __tex__(self):
|
|
|
|
return self._mo.__tex__
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-12-07 07:10:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|