@@ -10,11 +10,11 @@ function Optimization.instantiate_function(f, x, adtype::AutoModelingToolkit, p,
10
10
num_cons = 0 )
11
11
p = isnothing (p) ? SciMLBase. NullParameters () : p
12
12
13
- sys = ModelingToolkit. modelingtoolkitize (OptimizationProblem (f, x, p;
13
+ sys = complete ( ModelingToolkit. modelingtoolkitize (OptimizationProblem (f, x, p;
14
14
lcons = fill (0.0 ,
15
15
num_cons),
16
16
ucons = fill (0.0 ,
17
- num_cons)))
17
+ num_cons))))
18
18
# sys = ModelingToolkit.structural_simplify(sys)
19
19
f = OptimizationProblem (sys, x, p, grad = true , hess = true ,
20
20
sparse = adtype. obj_sparse, cons_j = true , cons_h = true ,
@@ -56,11 +56,11 @@ function Optimization.instantiate_function(f, cache::Optimization.ReInitCache,
56
56
adtype:: AutoModelingToolkit , num_cons = 0 )
57
57
p = isnothing (cache. p) ? SciMLBase. NullParameters () : cache. p
58
58
59
- sys = ModelingToolkit. modelingtoolkitize (OptimizationProblem (f, cache. u0, cache. p;
59
+ sys = complete ( ModelingToolkit. modelingtoolkitize (OptimizationProblem (f, cache. u0, cache. p;
60
60
lcons = fill (0.0 ,
61
61
num_cons),
62
62
ucons = fill (0.0 ,
63
- num_cons)))
63
+ num_cons))))
64
64
# sys = ModelingToolkit.structural_simplify(sys)
65
65
f = OptimizationProblem (sys, cache. u0, cache. p, grad = true , hess = true ,
66
66
sparse = adtype. obj_sparse, cons_j = true , cons_h = true ,
0 commit comments