Skip to content

Commit

Permalink
Replace constructor by explicit image_space
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Aug 13, 2024
1 parent de95d4a commit f1c09a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/null.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function MacaulayNullspace(matrix::AbstractMatrix{T}, basis) where {T}
return MacaulayNullspace(matrix, basis, Base.rtoldefault(T))
end

function MacaulayNullspace(
function image_space(
ν::MomentMatrix,
rank_check::RankCheck,
ldlt::LowRankLDLTAlgorithm = SVDLDLT(),
Expand Down Expand Up @@ -81,7 +81,7 @@ function compute_support!(
rank_check::RankCheck,
solver::ImageSpaceSolver,
)
null = MacaulayNullspace(ν, rank_check, solver.ldlt)
null = image_space(ν, rank_check, solver.ldlt)
ν.support = solve(null, solver.null)
return
end
Expand Down

0 comments on commit f1c09a0

Please sign in to comment.