Skip to content

Commit

Permalink
update docs example
Browse files Browse the repository at this point in the history
  • Loading branch information
lostella committed Feb 27, 2022
1 parent e7ce82e commit 10d7e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/guide/getting_started.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ using LinearAlgebra
using ProximalOperators
using ProximalAlgorithms

quadratic_cost(x) = dot([3.4 1.2; 1.2 89.1] * x, x) / 2 + dot([-2.3, 99.9], x)
quadratic_cost(x) = dot([3.4 1.2; 1.2 4.5] * x, x) / 2 + dot([-2.3, 9.9], x)
box_indicator = ProximalOperators.IndBox(0, 1)

ffb = ProximalAlgorithms.FastForwardBackward(maxit=1000, tol=1e-5, verbose=true)
Expand Down

2 comments on commit 10d7e80

@lostella
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/55604

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.1 -m "<description of version>" 10d7e8027a0f8c7605400f38a4fe2a62c59a17d2
git push origin v0.5.1

Please sign in to comment.