-
We are seeing minor differences in iterations between different builds of our solver that should be exactly the same. The best we can tell is that the Dual variables are going uninitialized, or something to that effect. I wanted to ask how |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
By default, Ipopt will calculate some initial value for the dual values. It uses a least-square estimate for constraint multipliers and a constant for bound multipliers, see the various Initialization options. If you enable |
Beta Was this translation helpful? Give feedback.
By default, Ipopt will calculate some initial value for the dual values. It uses a least-square estimate for constraint multipliers and a constant for bound multipliers, see the various Initialization options.
If you enable
warm_start_init_point
, then Ipopt will callget_starting_point()
withinit_lambda = true
and you are supposed to filllambda
with a suitable value.