Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/guide/derivative.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```@meta
DocTestFilters = [r"≥|>=", r" == | = ", r" ∈ | in ", r" for all | ∀ ", r"d|∂",
r"integral|∫", r".*scalar_parameters.jl:807"]
r"integral|∫", r".*scalar_parameters\.jl:\d+"]
```

# [Derivative Operators](@id deriv_docs)
Expand Down
4 changes: 2 additions & 2 deletions docs/src/tutorials/resolves.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ julia> set_parameter_value(Tsp, Tsp_new);
The new function must have the same infinite parameter format as the original parameter function.

Now we can call `optimize!` again to solve our updated model!
```jldoctest quick
```jldoctest quick; filter = r"\d+"
julia> optimize!(model)

julia> barrier_iterations(model)
Expand All @@ -252,7 +252,7 @@ julia> set_optimizer_attribute(model, "bound_frac", 1e-8); # Desired minimum rel
julia> set_optimizer_attribute(model, "mu_init", 1e-11); # Initial barrier parameter value
```
Note that the chosen values here are not always good, as optimal values are problem dependent. Moving on, solving with these new solver options reduces the number of iterations:
```jldoctest quick
```jldoctest quick; filter = r"\d+"
julia> optimize!(model)

julia> barrier_iterations(model)
Expand Down
Loading