We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25d0cd commit 10391ecCopy full SHA for 10391ec
Project.toml
@@ -1,7 +1,7 @@
1
name = "Manopt"
2
uuid = "0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
3
authors = ["Ronny Bergmann <manopt@ronnybergmann.net>"]
4
-version = "0.2.8"
+version = "0.2.9"
5
6
[deps]
7
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
src/solvers/NelderMead.jl
@@ -35,7 +35,7 @@ and the ones that are passed to [`decorate_options`](@ref) for decorators.
35
function NelderMead(
36
M::MT,
37
F::TF,
38
- population=[random_point(M) for i in 1:(manifoldDimension(M) + 1)];
+ population=[random_point(M) for i in 1:(manifold_dimension(M) + 1)];
39
stopping_criterion::StoppingCriterion=StopAfterIteration(200000),
40
α=1.0,
41
γ=2.0,
0 commit comments