Skip to content

Commit

Permalink
reduce tangent vector size even further.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellertuer committed Sep 23, 2021
1 parent 1c87a9d commit e7dec40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/manifolds/stiefel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ using Manifolds: default_metric_dispatch
M4 = MetricManifold(Stiefel(10, 2), CanonicalMetric())
p = Matrix{Float64}(I, 10, 2)
Random.seed!(42)
Z = project(base_manifold(M4), p, 0.5 .* randn(size(p)))
Z = project(base_manifold(M4), p, 0.2 .* randn(size(p)))
s = exp(M4, p, Z)
Z2 = log(M4, p, s)
@test isapprox(M4, p, Z, Z2)
Expand Down

0 comments on commit e7dec40

Please sign in to comment.