From 862c1b663a9d3710ac46849c521d488ad1727ebf Mon Sep 17 00:00:00 2001 From: Lafrite Date: Tue, 7 Apr 2015 07:45:37 +0200 Subject: [PATCH] Add a todo --- pymath/polynomDeg2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pymath/polynomDeg2.py b/pymath/polynomDeg2.py index 97e5aeb..b1e1a31 100644 --- a/pymath/polynomDeg2.py +++ b/pymath/polynomDeg2.py @@ -133,6 +133,7 @@ class Polynom_deg2(Polynom): >>> P.roots() [-1.0, 1.0] """ + # TODO: Use sympy to compute those |mar. avril 7 07:31:42 CEST 2015 if self.delta > 0: self._roots = [round((-self.b - sqrt(self.delta))/(2*self.a),after_coma), round((-self.b + sqrt(self.delta))/(2*self.a),after_coma)] elif self.delta == 0: