Skip to content

Commit 7281a35

Browse files
committed
Replace constructor by explicit image_space (#87)
1 parent 5b67e14 commit 7281a35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/null.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function MacaulayNullspace(matrix::AbstractMatrix{T}, basis) where {T}
2121
return MacaulayNullspace(matrix, basis, Base.rtoldefault(T))
2222
end
2323

24-
function MacaulayNullspace(
24+
function image_space(
2525
ν::MomentMatrix,
2626
rank_check::RankCheck,
2727
ldlt::LowRankLDLTAlgorithm = SVDLDLT(),
@@ -70,7 +70,7 @@ function compute_support!(
7070
rank_check::RankCheck,
7171
solver::ImageSpaceSolver,
7272
)
73-
null = MacaulayNullspace(ν, rank_check, solver.ldlt)
73+
null = image_space(ν, rank_check, solver.ldlt)
7474
ν.support = solve(null, solver.null)
7575
return
7676
end

0 commit comments

Comments
 (0)