Skip to content

Commit

Permalink
Fix missing type parameter in LDLFactorization (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsajko authored Apr 18, 2022
1 parent 07bf080 commit 2b055fd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/KKT/LDLFactorizations/ldlfact.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ mutable struct LDLFactSolver{T,S} <: AbstractKKTSolver{T}
A::SparseMatrixCSC{T,Int}

# Workspace
θ::Vector{T} # Diagonal scaling
regP::Vector{T} # Primal regularization
regD::Vector{T} # Dual regularization
K::SparseMatrixCSC{T,Int} # KKT matrix
F::LDLF.LDLFactorization{T} # Factorization
ξ::Vector{T} # RHS of KKT system
θ::Vector{T} # Diagonal scaling
regP::Vector{T} # Primal regularization
regD::Vector{T} # Dual regularization
K::SparseMatrixCSC{T,Int} # KKT matrix
F::LDLF.LDLFactorization{T,Int,Int,Int} # Factorization
ξ::Vector{T} # RHS of KKT system
end

backend(::LDLFactSolver) = "LDLFactorizations"
Expand Down

0 comments on commit 2b055fd

Please sign in to comment.