Skip to content

Commit

Permalink
runs formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellertuer committed Feb 1, 2025
1 parent 5015202 commit a539ca1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/manifolds/Elliptope.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ compute a projection based retraction by projecting ``q+Y`` back onto the manifo
"""
retract(::Elliptope, ::Any, ::Any, ::ProjectionRetraction)

retract_project!(M::Elliptope, r, q, Y) = ManifoldsBase.retract_project_fused!(M, r, q, Y, one(eltype(q)))
function retract_project!(M::Elliptope, r, q, Y)
return ManifoldsBase.retract_project_fused!(M, r, q, Y, one(eltype(q)))
end

function ManifoldsBase.retract_project_fused!(M::Elliptope, r, q, Y, t::Number)
r .= q .+ t .* Y
Expand Down

0 comments on commit a539ca1

Please sign in to comment.