Hello,
I'm new to Pyomo, so this may be a basic question!
I am attempting (without success) to slacken the tolerance of the ipopt algorithm from the default 1e-08, to 1e-03.
Here the snippet I am using within my python script:
#------------------------------------------
solver='ipopt'
opt=SolverFactory(solver)
opt.tol = 1e-3 #Is this right???
results = opt.solve(disc_instance, tee=True)
#------------------------------------------
The solver keeps iterating despite meeting the new tolerance requirement. I must not be using the correct syntax for specifying the tolerance requirement.
Any suggestions?
Thanks