Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo #126

Merged
merged 1 commit into from
Jan 22, 2024
Merged
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
8 changes: 4 additions & 4 deletions src/p_sparse_matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,7 @@ end
function consistent(A::PSparseMatrix,rows_co;kwargs...)
@assert A.assembled
T = eltype(partition(A))
psparse_consitent_impl(A,T,rows_co;kwargs...)
psparse_consistent_impl(A,T,rows_co;kwargs...)
end

"""
Expand All @@ -1432,10 +1432,10 @@ end
function consistent!(B::PSparseMatrix,A::PSparseMatrix,cache)
@assert A.assembled
T = eltype(partition(A))
psparse_consitent_impl!(B,A,T,cache)
psparse_consistent_impl!(B,A,T,cache)
end

function psparse_consitent_impl(
function psparse_consistent_impl(
A,
::Type{<:AbstractSplitMatrix},
rows_co;
Expand Down Expand Up @@ -1576,7 +1576,7 @@ function psparse_consitent_impl(
end
end

function psparse_consitent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
function psparse_consistent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
function setup_snd(A,cache)
k_snd_data = cache.k_snd.data
V_snd_data = cache.V_snd.data
Expand Down
Loading