Skip to content

Commit f25b1bb

Browse files
committed
Uprev SIP.
1 parent 4439329 commit f25b1bb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ bazel_dep(name = "sip", dev_dependency = True)
66
git_override(
77
module_name = "sip",
88
remote = "https://github.com/joaospinto/sip.git",
9-
commit = "acfaf9e1201b283ad44690dfeeea760f9cfe010d",
9+
commit = "c613d65b860eeb5100bd4415f5741d1edaafa4ce",
1010
)
1111

1212
# SIP_QDLDL

src/sip_python.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,9 @@ NB_MODULE(sip_python_ext, m) {
377377
.def_rw("max_suboptimal_constraint_violation",
378378
&sip::Settings::max_suboptimal_constraint_violation)
379379
.def_rw("max_merit_slope", &sip::Settings::max_merit_slope)
380+
.def_rw("initial_regularization", &sip::Settings::initial_regularization)
381+
.def_rw("regularization_decay_factor",
382+
&sip::Settings::regularization_decay_factor)
380383
.def_rw("tau", &sip::Settings::tau)
381384
.def_rw("start_ls_with_alpha_s_max",
382385
&sip::Settings::start_ls_with_alpha_s_max)

0 commit comments

Comments
 (0)