Feat(Core): Clarify power and degree for MO
This commit is contained in:
parent
cad6cd7182
commit
8b6ede92c5
@ -266,6 +266,9 @@ class MOstr(MO):
|
||||
"""
|
||||
|
||||
return {1: MOnumber(1)}
|
||||
@property
|
||||
def degree(self):
|
||||
return 1
|
||||
|
||||
|
||||
# -----------------------------
|
||||
|
@ -85,8 +85,14 @@ class MOstrPower(MO):
|
||||
|
||||
@property
|
||||
def power(self):
|
||||
""" MO version """
|
||||
return self._power
|
||||
|
||||
@property
|
||||
def degree(self):
|
||||
""" python version """
|
||||
return self._power.value
|
||||
|
||||
@property
|
||||
def signature(self):
|
||||
""" Name of the mo in the API
|
||||
@ -190,6 +196,9 @@ class MOMonomial(MO):
|
||||
return self._power
|
||||
|
||||
@property
|
||||
def degree(self):
|
||||
return self._power.value
|
||||
@property
|
||||
def signature(self):
|
||||
""" Name of the mo in the API
|
||||
|
||||
|
@ -77,18 +77,30 @@ class MOpolynomial(MO):
|
||||
:example:
|
||||
>>> p = MOpolynomial('x', [1, 2, 3])
|
||||
>>> p.degree
|
||||
<MOnumber 2>
|
||||
2
|
||||
>>> p = MOpolynomial('x', {0: 1, 3: 4})
|
||||
>>> p.degree
|
||||
3
|
||||
|
||||
"""
|
||||
return self.power.value
|
||||
|
||||
@property
|
||||
def power(self):
|
||||
"""
|
||||
Maximum degree of its coefficient
|
||||
|
||||
:example:
|
||||
>>> p = MOpolynomial('x', [1, 2, 3])
|
||||
>>> p.power
|
||||
<MOnumber 2>
|
||||
>>> p = MOpolynomial('x', {0: 1, 3: 4})
|
||||
>>> p.power
|
||||
<MOnumber 3>
|
||||
|
||||
"""
|
||||
return max(self._coefs.keys())
|
||||
|
||||
@property
|
||||
def power(self):
|
||||
return self.degree
|
||||
|
||||
@property
|
||||
def coefficients(self):
|
||||
return self._coefs
|
||||
|
Loading…
Reference in New Issue
Block a user