Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/rank.jl
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,15 @@ Method for computing a ``r \\times n`` matrix `U` of a ``n \\times n`` rank ``r`
"""
abstract type LowRankLDLTAlgorithm end

"""
<: LowRankLDLTAlgorithm

Shift the matrix by `shift` times the identity matrix before cholesky.
"""
struct AbsCholeskyLDLT{T} <: LowRankLDLTAlgorithm
shift::T
end

"""
ShiftCholeskyLDLT <: LowRankLDLTAlgorithm

Expand Down
Loading