We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439de76 commit f64ffd7Copy full SHA for f64ffd7
alm/input_parser.cpp
@@ -1077,7 +1077,7 @@ auto InputParser::parse_optimize_vars(ALM *alm) -> void
1077
optcontrol.linear_model = 1;
1078
} else if (str_LMODEL == "enet" || str_LMODEL == "elastic-net" || str_LMODEL == "2") {
1079
optcontrol.linear_model = 2;
1080
- } else if (str_LMODEL == "adaptive-lasso" || str_LMODEL == "3") {
+ } else if (str_LMODEL == "adaptive-lasso" || str_LMODEL == "adalasso" || str_LMODEL == "3") {
1081
optcontrol.linear_model = 3;
1082
} else {
1083
exit("parse_optimize_vars", "Invalid OPTIMIZER-tag");
0 commit comments