Feat: raw methods for tokens
This commit is contained in:
parent
16a6c4953d
commit
69e1e43966
@ -57,6 +57,10 @@ class Polynomial(Token):
|
||||
def random(cls):
|
||||
raise NotImplementedError
|
||||
|
||||
@property
|
||||
def raw(self):
|
||||
raise NotImplementedError("Polynomial does not exists in python")
|
||||
|
||||
def __setitem__(self, key, item):
|
||||
""" Use Polynomial like if they were a dictionnary to set coefficients """
|
||||
raise NotImplementedError("Can't set coefficient of a polynomial")
|
||||
|
@ -84,6 +84,11 @@ class Token(object):
|
||||
def __tex__(self):
|
||||
return self._mo.__tex__
|
||||
|
||||
@property
|
||||
def raw(self):
|
||||
""" Get python's raw forme of the token """
|
||||
return self._mo.value
|
||||
|
||||
def _operate(self, other, operation):
|
||||
""" Make a operation between 2 Tokens """
|
||||
from ..expression import Expression
|
||||
|
Loading…
Reference in New Issue
Block a user