Skip to content

Commit

Permalink
remove reassignment of cl from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed Apr 15, 2024
1 parent 6aa4c26 commit d12a738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/LowLevel.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ aux = CellListMap.AuxThreaded(cl)
for i in 1:nsteps
x = ... # new coordinates
box = Box(sides,cutoff) # perhaps the box has changed
cl = UpdateCellList!(x,box,cl,aux)
UpdateCellList!(x,box,cl,aux) # modifies cl
map_pairwise!(...)
end
```
Expand All @@ -503,7 +503,7 @@ aux = CellListMap.AuxThreaded(cl)
for i in 1:nsteps
x = ... # new coordinates
box = Box(sides,cutoff) # perhaps the box has changed
cl = UpdateCellList!(x,y,box,cl,aux)
UpdateCellList!(x,y,box,cl,aux) # modifies cl
map_pairwise(...)
end
```
Expand Down

2 comments on commit d12a738

@lmiq
Copy link
Member Author

@lmiq lmiq commented on d12a738 Apr 15, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • Merge cell ilsts in parallel. May improve scaling for very large systems in highly parallel computers.
  • Note: the CellList is now a mutable struct (it was immutable). This was not part of the API, but it is worth mentioning.

@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 created: JuliaRegistries/General/104960

Tagging

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 v0.8.27 -m "<description of version>" d12a73892d8361d48cbdf05cd41ee12571955ea6
git push origin v0.8.27

Please sign in to comment.