Skip to content

Commit 561699d

Browse files
Merge pull request #690 from AayushSabharwal/as/complete-system
fix: call `complete` on systems generated in MTKExt
2 parents 4693404 + 90ccc2a commit 561699d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/OptimizationMTKExt.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ function Optimization.instantiate_function(f, x, adtype::AutoModelingToolkit, p,
1010
num_cons = 0)
1111
p = isnothing(p) ? SciMLBase.NullParameters() : p
1212

13-
sys = ModelingToolkit.modelingtoolkitize(OptimizationProblem(f, x, p;
13+
sys = complete(ModelingToolkit.modelingtoolkitize(OptimizationProblem(f, x, p;
1414
lcons = fill(0.0,
1515
num_cons),
1616
ucons = fill(0.0,
17-
num_cons)))
17+
num_cons))))
1818
#sys = ModelingToolkit.structural_simplify(sys)
1919
f = OptimizationProblem(sys, x, p, grad = true, hess = true,
2020
sparse = adtype.obj_sparse, cons_j = true, cons_h = true,
@@ -56,11 +56,11 @@ function Optimization.instantiate_function(f, cache::Optimization.ReInitCache,
5656
adtype::AutoModelingToolkit, num_cons = 0)
5757
p = isnothing(cache.p) ? SciMLBase.NullParameters() : cache.p
5858

59-
sys = ModelingToolkit.modelingtoolkitize(OptimizationProblem(f, cache.u0, cache.p;
59+
sys = complete(ModelingToolkit.modelingtoolkitize(OptimizationProblem(f, cache.u0, cache.p;
6060
lcons = fill(0.0,
6161
num_cons),
6262
ucons = fill(0.0,
63-
num_cons)))
63+
num_cons))))
6464
#sys = ModelingToolkit.structural_simplify(sys)
6565
f = OptimizationProblem(sys, cache.u0, cache.p, grad = true, hess = true,
6666
sparse = adtype.obj_sparse, cons_j = true, cons_h = true,

0 commit comments

Comments
 (0)