Skip to content

Commit c34776f

Browse files
abelsiqueiraJSOTutorials bot
and
JSOTutorials bot
authored
🤖 Tutorials deployment from 373e072becc68c81c12e9d90fe60075fc8b262c2 (#141)
Co-authored-by: JSOTutorials bot <jsotutorials@no.mail>
1 parent 0d79397 commit c34776f

File tree

1 file changed

+4
-4
lines changed
  • tutorials/introduction-to-cannoles

1 file changed

+4
-4
lines changed

tutorials/introduction-to-cannoles/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
\preamble{Abel S. Siqueira}
66

77

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/)
1010

1111

1212

@@ -34,7 +34,7 @@ Find below a list of the main options of `cannoles`.
3434

3535
| Parameters | Type | Default | Description |
3636
| -------------------- | ------------- | ----------------- | -------------------------------------------------- |
37-
| ϵtol | AbstractFloat | `√eps(eltype(x))` | tolerance |
37+
| rtol | AbstractFloat | `√eps(eltype(x))` | tolerance |
3838
| unbounded_threshold | AbstractFloat | `-1e5` | below this threshold the problem is unbounded |
3939
| max_f | Integer | `100000` | evaluation limit, e.g. `sum_counters(nls) > max_f` |
4040
| max_time | AbstractFloat | `30.0` | maximum number of seconds |
@@ -60,7 +60,7 @@ using CaNNOLeS, ADNLPModels
6060

6161
# Rosenbrock
6262
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))
6464
```
6565

6666
```plaintext

0 commit comments

Comments
 (0)