Update definiteIntegralFunc.py

Added generator class
This commit is contained in:
helplessThor
2020-10-20 12:11:53 +05:30
committed by GitHub
parent 8407ba1458
commit 8f6fb56c15

View File

@@ -20,3 +20,6 @@ def definiteIntegralFunc(max_coeff=100):
solution = str(I)
return problem, solution
definiteIntegral = Generator("Definite Integral of Quadratic Equation", 110, "The definite integral within limits 0 to 1 of quadratic equation ax^2+bx+c is = ", "I", definiteIntegralFunc)