add equation from pymath

This commit is contained in:
Benjamin Bertrand 2016-05-10 14:25:09 +03:00
parent 9be024d3c9
commit 0579535350

View File

@ -13,6 +13,7 @@ import math as m
import random as rd import random as rd
from pymath import Expression from pymath import Expression
from pymath import Polynom from pymath import Polynom
from pymath import Equation
from pymath.calculus.polynomDeg2 import Polynom_deg2 from pymath.calculus.polynomDeg2 import Polynom_deg2
from pymath import Fraction from pymath import Fraction
from pymath import random_str from pymath import random_str
@ -27,6 +28,7 @@ export_dict.update({"Expression":Expression,\
"Polynom":Polynom,\ "Polynom":Polynom,\
"Polynom_deg2":Polynom_deg2,\ "Polynom_deg2":Polynom_deg2,\
"Fraction":Fraction,\ "Fraction":Fraction,\
"Equation":Equation,\
"random_str": random_str,\ "random_str": random_str,\
"random_pythagore":random_pythagore,\ "random_pythagore":random_pythagore,\
}) })