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
Need to make sure regularization_solve is NOT called with opt%reg_order /= 2.
We should catch the specific combination of options that triggers this "not yet supported" combination before entering the solver, at the check_options() phase.
This can be difficult, given that the regularization parameter can be changed dynamically internally, and this can change between steps (although only if a regularization parameter less than zero was sent in the first call). i.e., it's the value of this in the workspace that's important.
The checking of options opt%type_of_method==2 .And. opt%nlls_method==3 are certainly required.
The text was updated successfully, but these errors were encountered:
Need to make sure
regularization_solve
is NOT called withopt%reg_order /= 2
.We should catch the specific combination of options that triggers this "not yet supported" combination before entering the solver, at the
check_options()
phase.This can be difficult, given that the regularization parameter can be changed dynamically internally, and this can change between steps (although only if a regularization parameter less than zero was sent in the first call). i.e., it's the value of this in the workspace that's important.
The checking of options
opt%type_of_method==2 .And. opt%nlls_method==3
are certainly required.The text was updated successfully, but these errors were encountered: