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
I find a mistake from the alm_opt.hpp.
void HybridOPT::updateLambda(void) {
double cts_num_ = opt_params_.equality_constraint_num +
opt_params_.equality_constraint_num;
The code should be corrected as follows:
void HybridOPT::updateLambda(void) {
double cts_num_ = opt_params_.equality_constraint_num +
opt_params_.inequality_constraint_num;
The text was updated successfully, but these errors were encountered:
I find a mistake from the alm_opt.hpp.
void HybridOPT::updateLambda(void) {
double cts_num_ = opt_params_.equality_constraint_num +
opt_params_.equality_constraint_num;
The code should be corrected as follows:
void HybridOPT::updateLambda(void) {
double cts_num_ = opt_params_.equality_constraint_num +
opt_params_.inequality_constraint_num;
The text was updated successfully, but these errors were encountered: