Skip to content

Commit

Permalink
Fix two spurious places where I missed to remove the sym reference af…
Browse files Browse the repository at this point in the history
…ter copying from there.
  • Loading branch information
kellertuer committed Oct 24, 2024
1 parent 6eda884 commit 770377f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/manifolds/InvertibleMatrices.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@doc raw"""
InvertibleMatrices{𝔽,T} <: AbstractDecoratorManifold{𝔽}
The [`AbstractManifold`](@extref `ManifoldsBase.AbstractManifold`) ``\operatorname{Sym}(n)``
The [`AbstractManifold`](@extref `ManifoldsBase.AbstractManifold`)
consisting of the real- or complex-valued invertible matrices, that is the set
```math
Expand Down Expand Up @@ -40,10 +40,8 @@ end
check_point(M::InvertibleMatrices{n,𝔽}, p; kwargs...)
Check whether `p` is a valid manifold point on the [`InvertibleMatrices`](@ref) `M`, i.e.
whether `p` is a symmetric matrix of size `(n,n)` with values from the corresponding
whether `p` is an invertible matrix of size `(n,n)` with values from the corresponding
[`AbstractNumbers`](@extref ManifoldsBase number-system) `𝔽`.
The tolerance for the symmetry of `p` can be set using `kwargs...`.
"""
function check_point(M::InvertibleMatrices, p; kwargs...)
if det(p) == 0
Expand Down

0 comments on commit 770377f

Please sign in to comment.