We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0685566 commit 0e11919Copy full SHA for 0e11919
src/services/DFGVariable.jl
@@ -76,7 +76,9 @@ Interface function to return the `variableType` manifolds of an InferenceVariabl
76
function getManifolds end
77
78
getManifolds(::Type{<:T}) where {T <: ManifoldsBase.Manifold} = convert(Tuple, T)
79
-getManifolds(::T) where {T <: ManifoldsBase.Manifold} = convert(Tuple, T)
+getManifolds(::T) where {T <: ManifoldsBase.Manifold} = getManifolds(T)
80
+
81
+getDimension(t_::T) where {T <: ManifoldsBase.Manifold} = manifold_dimension(t_)
82
83
"""
84
@defVariable StructName manifolds<:ManifoldsBase.Manifold
0 commit comments