You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/documentation_glossary.jl
+6-15Lines changed: 6 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -427,16 +427,16 @@ define!(
427
427
:Variable,
428
428
:grad_f,
429
429
:description,
430
-
(; M ="M", p ="p") ->
431
-
"the (Riemannian) gradient ``$(_tex(:grad))f: $(_math(:M, M = M)) → $(_math(:TpM; M = M, p = p))`` of f as a function `(M, p) -> X` or a function `(M, X, p) -> X` computing `X` in-place",
430
+
(; M ="M", p ="p", f="f", kwargs...) ->
431
+
"the (Riemannian) gradient ``$(_tex(:grad))$f: $(_math(:M, M = M)) → $(_math(:TpM; M = M, p = p))`` of $f as a function `(M, p) -> X` or a function `(M, X, p) -> X` computing `X` in-place",
432
432
)
433
433
434
434
define!(
435
435
:Variable,
436
436
:Hess_f,
437
437
:description,
438
-
(; M ="M", p ="p") ->
439
-
"the (Riemannian) Hessian ``$(_tex(:Hess))f: $(_math(:TpM, M = M, p = p)) → $(_math(:TpM; M = M, p = p))`` of f as a function `(M, p, X) -> Y` or a function `(M, Y, p, X) -> Y` computing `Y` in-place",
438
+
(; M ="M", p ="p", f="f") ->
439
+
"the (Riemannian) Hessian ``$(_tex(:Hess))$f: $(_math(:TpM, M = M, p = p)) → $(_math(:TpM; M = M, p = p))`` of $f as a function `(M, p, X) -> Y` or a function `(M, Y, p, X) -> Y` computing `Y` in-place",
440
440
)
441
441
442
442
define!(
@@ -542,19 +542,10 @@ define!(
542
542
:Variable,
543
543
:subgrad_f,
544
544
:description,
545
-
(; M ="M", p ="p") ->"""
546
-
the subgradient ``∂f: $(_math(:M; M = M)) → $(_math(:TM; M = M))`` of f as a function `(M, p) -> X`
547
-
or a function `(M, X, p) -> X` computing `X` in-place.
548
-
This function should always only return one element from the subgradient.
545
+
(; M ="M", p ="p", f="f", kwargs...) ->"""
546
+
the subgradient ``∂$f: $(_math(:M; M = M)) → $(_math(:TM; M = M))`` of ``$f`` as a function `(M, p) -> X` or a function `(M, X, p) -> X` computing `X` in-place. This function should always only return one element from the subgradient.
549
547
""",
550
548
)
551
-
define!(
552
-
:Variable,
553
-
:subgrad_f,
554
-
:description,
555
-
(; M ="M") ->
556
-
" a state to specify the sub solver to use. For a closed form solution, this indicates the type of function.",
0 commit comments