We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06ec202 commit 6640510Copy full SHA for 6640510
2 files changed
Project.toml
@@ -1,7 +1,7 @@
1
name = "Tutorials"
2
uuid = "cb10daa6-a5e5-4c25-a171-ae181b8ea3c9"
3
authors = ["Olivier Cots <olivier.cots@toulouse-inp.fr>"]
4
-version = "0.3.2"
+version = "0.4.0"
5
6
[compat]
7
julia = "1.10"
docs/src/tutorial-nlp.md
# [NLP and DOCP manipulations](@id tutorial-nlp)
```@meta
-Draft = true
+Draft = false
CurrentModule = OptimalControl
```
@@ -91,6 +91,7 @@ We have two approaches to solve the NLP problem.
91
We can create an OptimalControl solver strategy and use it to solve the NLP:
92
93
```@example main-nlp
94
+using NLPModelsIpopt
95
solver = OptimalControl.Ipopt(print_level=5, tol=1e-8, mu_strategy="adaptive")
96
nlp_sol = solve(nlp, solver; display=true)
97
nothing # hide
0 commit comments