stationary point id fix

This commit is contained in:
lukew3
2020-10-26 13:33:46 -04:00
parent 8b4bfb63f8
commit d24c249668
2 changed files with 3 additions and 2 deletions

View File

@@ -20,4 +20,5 @@ def stationaryPointsFunc(maxExp=3, maxCoef=10):
return problem, solution return problem, solution
stationary_points = Generator("Stationary Points", 106, "f(x)=x^3-3x", "(-1,2),(1,-2)", stationaryPointsFunc) stationary_points = Generator("Stationary Points", 110, "f(x)=x^3-3x",
"(-1,2),(1,-2)", stationaryPointsFunc)

View File

@@ -10,4 +10,4 @@ for item in list:
print(item[2]) print(item[2])
# print(mathgen.getGenList()) # print(mathgen.getGenList())
print(mathgen.genById(109)) print(mathgen.genById(110))