File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tutorials/introduction-to-cannoles Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
\preamble{Abel S. Siqueira}
6
6
7
7
8
- [ ![ CaNNOLeS 0.7.2 ] ( https://img.shields.io/badge/CaNNOLeS-0.7.2 -006400?style=flat-square&labelColor=389826 )] ( https://juliasmoothoptimizers.github.io/CaNNOLeS.jl/stable/ )
9
- [ ![ ADNLPModels 0.5 .1] ( https://img.shields.io/badge/ADNLPModels-0.5 .1-8b0000?style=flat-square&labelColor=cb3c33 )] ( https://juliasmoothoptimizers.github.io/ADNLPModels.jl/stable/ )
8
+ [ ![ CaNNOLeS 0.7.4 ] ( https://img.shields.io/badge/CaNNOLeS-0.7.4 -006400?style=flat-square&labelColor=389826 )] ( https://juliasmoothoptimizers.github.io/CaNNOLeS.jl/stable/ )
9
+ [ ![ ADNLPModels 0.6 .1] ( https://img.shields.io/badge/ADNLPModels-0.6 .1-8b0000?style=flat-square&labelColor=cb3c33 )] ( https://juliasmoothoptimizers.github.io/ADNLPModels.jl/stable/ )
10
10
11
11
12
12
@@ -34,7 +34,7 @@ Find below a list of the main options of `cannoles`.
34
34
35
35
| Parameters | Type | Default | Description |
36
36
| -------------------- | ------------- | ----------------- | -------------------------------------------------- |
37
- | ϵtol | AbstractFloat | ` √eps(eltype(x)) ` | tolerance |
37
+ | rtol | AbstractFloat | ` √eps(eltype(x)) ` | tolerance |
38
38
| unbounded_threshold | AbstractFloat | ` -1e5 ` | below this threshold the problem is unbounded |
39
39
| max_f | Integer | ` 100000 ` | evaluation limit, e.g. ` sum_counters(nls) > max_f ` |
40
40
| max_time | AbstractFloat | ` 30.0 ` | maximum number of seconds |
@@ -60,7 +60,7 @@ using CaNNOLeS, ADNLPModels
60
60
61
61
# Rosenbrock
62
62
nls = ADNLSModel (x -> [x[1 ] - 1 ; 10 * (x[2 ] - x[1 ]^ 2 )], [- 1.2 ; 1.0 ], 2 )
63
- stats = cannoles (nls, ϵtol = 1e-5 , x = ones (2 ))
63
+ stats = cannoles (nls, rtol = 1e-5 , x = ones (2 ))
64
64
```
65
65
66
66
``` plaintext
You can’t perform that action at this time.
0 commit comments