From 770377ff29e3312dd379218e0e154edfd4cc8ed6 Mon Sep 17 00:00:00 2001 From: Ronny Bergmann Date: Thu, 24 Oct 2024 06:11:12 +0200 Subject: [PATCH] Fix two spurious places where I missed to remove the sym reference after copying from there. --- src/manifolds/InvertibleMatrices.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/manifolds/InvertibleMatrices.jl b/src/manifolds/InvertibleMatrices.jl index f99a80044..36e52595a 100644 --- a/src/manifolds/InvertibleMatrices.jl +++ b/src/manifolds/InvertibleMatrices.jl @@ -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 @@ -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