You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initializing idrs! from near to the solution, I receive an error that res is not defined. In looking closer, this is likely because res is referenced only on line 88 of idrs.jl and is not created anywhere. Line 88 is only called if normR<=tol, which is commented to occur when the "initial guess is a good enough solution." Replacing the return value in this case to X, log seems to work fine for me, though this may be bad/breaking for other reasons. I thought I would report this here in case this or another solution would be an easy fix. Thank you for putting this package together!
The text was updated successfully, but these errors were encountered:
When initializing
idrs!
from near to the solution, I receive an error that res is not defined. In looking closer, this is likely becauseres
is referenced only on line 88 of idrs.jl and is not created anywhere. Line 88 is only called ifnormR<=tol
, which is commented to occur when the "initial guess is a good enough solution." Replacing the return value in this case toX, log
seems to work fine for me, though this may be bad/breaking for other reasons. I thought I would report this here in case this or another solution would be an easy fix. Thank you for putting this package together!The text was updated successfully, but these errors were encountered: