solve bug with double simplifyon beta
This commit is contained in:
parent
9a2e6254b8
commit
def0e09851
@ -122,7 +122,7 @@ class Polynom_deg2(Polynom):
|
||||
\\frac{ -1 + 3 }{ 3 }
|
||||
\\frac{ 2 }{ 3 }
|
||||
"""
|
||||
return self(self.alpha).simplify()
|
||||
return self(self.alpha)
|
||||
|
||||
def roots(self, after_coma = 2):
|
||||
""" Compute roots of the polynom
|
||||
@ -231,8 +231,11 @@ if __name__ == '__main__':
|
||||
# P = Polynom_deg2([2, 3, 4])
|
||||
# print(P)
|
||||
|
||||
# print("Delta")
|
||||
# for i in P.delta.simplify():
|
||||
# print("\nDelta")
|
||||
# for i in P.delta.explain():
|
||||
# print(i)
|
||||
# print("\nBeta")
|
||||
# for i in P.beta.explain():
|
||||
# print(i)
|
||||
|
||||
import doctest
|
||||
|
Loading…
Reference in New Issue
Block a user