Skip to content

Commit 45762be

Browse files
committed
Format code and update Changelog.md
1 parent cc27076 commit 45762be

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
* fixed a few typos in the documentation strings of a few solvers.
1414
* fixed a typo in the documentation of `LevenbergMarquardt`.
1515
* fixed a bug in an internal tex command to print sums in the documentation.
16+
* fixed the use of `mesh_adaptive_direct_search` on manifolds with irrational injectivity radius.
1617

1718
## [0.5.25] October 9, 2025
1819

test/solvers/test_mesh_adaptive_direct_search.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ using Manifolds, Manopt, Test, LinearAlgebra, Random
4040
M3 = Sphere(2)
4141
f3(M, p) = sum(p)
4242
p2 = [-1.0, 0.0, 0.0]
43-
s3 = mesh_adaptive_direct_search(M3, f3, p2; return_state=true)
43+
s3 = mesh_adaptive_direct_search(M3, f3, p2; return_state = true)
4444
@test startswith(get_reason(s3), "At iteration")
4545
end

0 commit comments

Comments
 (0)