@@ -277,7 +277,7 @@ This is equivalent to `K[dofs, dofs] += Ke` and `f[dofs] += fe`, where `K` is th
277277 assemble!(A::AbstractAssembler, rowdofs::AbstractVector{Int}, coldofs::AbstractVector{Int}, Ke::AbstractMatrix, fe::AbstractVector)
278278
279279Assemble the element stiffness matrix `Ke` (and optional force vector `fe`) into the global
280- stiffness (and force) in `A`, given the element row degrees of freedom, `rowdofs`, and element column degrees of freedom, `coldofs`.
280+ stiffness (and force) in `A`, given the element row degrees of freedom, `rowdofs`, and element column degrees of freedom, `coldofs`.
281281This is equivalent to `K[rowdofs, coldofs] += Ke` and `f[rowdofs] += fe`, but more efficient.
282282"""
283283assemble! (:: AbstractAssembler , :: AbstractVector{<:Integer} , :: AbstractMatrix , :: AbstractVector )
292292@propagate_inbounds function assemble! (A:: SymmetricCSCAssembler , dofs:: AbstractVector{<:Integer} , Ke:: AbstractMatrix , fe:: Union{AbstractVector, Nothing} = nothing )
293293 return _assemble! (A, dofs, dofs, Ke, fe, true )
294294end
295- @propagate_inbounds function assemble! (A:: SymmetricCSCAssembler , rowdofs:: AbstractVector{<:Integer} , coldofs:: AbstractVector{<:Integer} , Ke:: AbstractMatrix , fe:: Union{AbstractVector, Nothing} = nothing )
296- return _assemble! (A, rowdofs, coldofs, Ke, fe, true )
297- end
298295
299296"""
300297 _sortdofs_for_assembly!(permutation::Vector{Int}, sorteddofs::Vector{Int}, dofs::AbstractVector)
0 commit comments