I am optimizing a model in Jump with IPOPT. The model has T x 6
variables: a1_t, a2_t...a6_t
with t = 1...T
When defining initial values using the function,
set_start_value.(all_variables(model), initial_values)
The expected sequence of elements in the initial_values vector should be:
a1_1, a1_2, a1_3,…, a2_1, a2_2,…
or otherwise (which would be unexpected)?
a1_1, a2_1, a3_1,…, a_12, a_22,…
The model minimises a least-squares sum in t. Also, possibly, it would better to use set_start_values instead? Could not find any advise about this in the documentation for JuMP. Thank you!