Skip to content

Commit

Permalink
fix non-init assembly buff
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKryslUCSD committed Mar 11, 2023
1 parent 15390b2 commit 8316d11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FinEtools"
uuid = "91bb5406-6c9a-523d-811d-0644c4229550"
authors = ["Petr Krysl <[email protected]>"]
version = "6.0.3"
version = "6.0.4"

[deps]
ChunkSplitters = "ae650224-84b6-46f8-82ea-d812ca08434e"
Expand Down
1 change: 1 addition & 0 deletions src/AssemblyModule.jl
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,7 @@ the first call to the method assemble.
function startassembly!(self::SysvecAssembler, ndofs_row)
self.ndofs = ndofs_row
resize!(self.F_buffer, self.ndofs)
self.F_buffer .= zero(eltype(self.F_buffer))
return self
end

Expand Down

2 comments on commit 8316d11

@PetrKryslUCSD
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/79387

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v6.0.4 -m "<description of version>" 8316d11f3b2859047020dd5149ba452ee57bd354
git push origin v6.0.4

Please sign in to comment.