Skip to content

Commit 07dbc6f

Browse files
committed
Remove ADNLPModels.jl from docs/Project.toml
1 parent c83e702 commit 07dbc6f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
[deps]
2-
ADNLPModels = "54578032-b7ea-4c30-94aa-7cbd1cce6c9a"
32
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
43
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
54
NLPModels = "a4795742-8479-5a88-8948-cc11e1c8c1a6"
65

76
[compat]
8-
ADNLPModels = "0.8"
97
Documenter = "1.0"

docs/src/tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ After calling one the [API](@ref) functions to get a function value, the
66
number of times that function was called is stored inside the
77
`NLPModel`. For instance
88

9-
```@example
9+
```julia
1010
using ADNLPModels, LinearAlgebra, NLPModels
1111
nlp = ADNLPModel(x -> dot(x, x), zeros(2))
1212
for i = 1:100
@@ -52,7 +52,7 @@ least squares models (the ones with `residual` below).
5252
To get the sum of all counters except `cons`, `jac`, `jprod` and `jtprod` called for a problem, use
5353
[`sum_counters`](@ref).
5454

55-
```@example
55+
```julia
5656
using ADNLPModels, LinearAlgebra, NLPModels
5757
nlp = ADNLPModel(x -> dot(x, x), zeros(2))
5858
obj(nlp, rand(2))

0 commit comments

Comments
 (0)