Skip to content

Commit 10391ec

Browse files
committed
fixes a small bug in Nelder Mead.
1 parent a25d0cd commit 10391ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Manopt"
22
uuid = "0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
33
authors = ["Ronny Bergmann <manopt@ronnybergmann.net>"]
4-
version = "0.2.8"
4+
version = "0.2.9"
55

66
[deps]
77
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"

src/solvers/NelderMead.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ and the ones that are passed to [`decorate_options`](@ref) for decorators.
3535
function NelderMead(
3636
M::MT,
3737
F::TF,
38-
population=[random_point(M) for i in 1:(manifoldDimension(M) + 1)];
38+
population=[random_point(M) for i in 1:(manifold_dimension(M) + 1)];
3939
stopping_criterion::StoppingCriterion=StopAfterIteration(200000),
4040
α=1.0,
4141
γ=2.0,

0 commit comments

Comments
 (0)