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
The underlying Fortran code still prints messages regardless of iprint, which clogs up stdout pretty quickly in my case. This could be fixed fairly quickly by adding an if statement to lines 3282-3283 in lbfgsb.f:
write(6,*) ' Positive dir derivative in projection 'write(6,*) ' Using the backtracking step '
If this package uses the C version, the fix is detailed here. I'm not sure how to do it myself since I am unfamiliar with the new dependency-building mechanism.
The text was updated successfully, but these errors were encountered:
The underlying Fortran code still prints messages regardless of
iprint
, which clogs up stdout pretty quickly in my case. This could be fixed fairly quickly by adding an if statement to lines 3282-3283 inlbfgsb.f
:If this package uses the C version, the fix is detailed here. I'm not sure how to do it myself since I am unfamiliar with the new dependency-building mechanism.
The text was updated successfully, but these errors were encountered: