Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Jul 2, 2024
1 parent 9001bdd commit 0643da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/flat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function Base.show(io::IO, ::MIME"text/plain", V::ZeroDimensionalVariety)
return
end
function Base.show(io::IO, V::ZeroDimensionalVariety)
show(io, MIME"text/plain"(), V)
return show(io, MIME"text/plain"(), V)
end

# Decomposition of the pencil of matrices
Expand Down
3 changes: 2 additions & 1 deletion src/null.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ function compute_support!(
rank_check::RankCheck,
solver::ImageSpaceSolver,
)
ν.support = solve(MacaulayNullspace(ν, rank_check, solver.ldlt), solver.null)
ν.support =
solve(MacaulayNullspace(ν, rank_check, solver.ldlt), solver.null)
return
end

Expand Down

0 comments on commit 0643da5

Please sign in to comment.