Releases: m3g/CellListMap.jl
Releases · m3g/CellListMap.jl
v0.9.0
CellListMap v0.9.0
Breaking changes:
- Removed the
PeriodicSystems
module, and convert the structure interface toParticleSystem
.
To update you package:
- Replace
using CellListMap.PeriodicSystems
byusing CellListMap
. - Replace all occurrences of
PeriodicSystems
(plural) byCellListMap
(ifreducer!
,copy_output
andreset_output!
were defined). - Replace all occurrences of
PeriodicSystem
(singular) byParticleSystem
.
v0.8.30
CellListMap v0.8.30
New features:
- support of
unitcell = nothing
for non-periodic systems in the high-levelPeriodicSystems
interface.
Breaking changes
This version, v0.8.30 retains compatibility through auxiliary functions, but the interface of the PeriodicSystems
was changed.
A warning is printed on package loading.
-
The
PeriodicSystem
interface was renamedParticleSystem
-
The
PeriodicSystems
submodule is going to be deprecated. Just loadCellListMap.
Interface changes in v0.8.30, for `PeriodicSystems` submodule of CellListMap. From v0.8.30 on, the `PeriodicSystems` submodule is deprecated and will be removed in future versions. (code that works in v0.8.XX series will work in v0.8.30 through compatibility functions). The same functionality can be achieved by using directly the `CellListMap` module and the `ParticleSystem` data structure. To migrate to the new interface, replace the code: using CellListMap.PeriodicSystems => using CellListMap system = PeriodicSystem(...) => system = ParticleSystem(...) UpdatePeriodicSystem!(system) => UpdateParticleSystem!(system)
v0.8.29
v0.8.28
CellListMap v0.8.28
New features:
- Support matrices as input coordinates in the
PeriodicSystems
interface.
v0.8.27
CellListMap v0.8.27
- Merge cell ilsts in parallel. May improve scaling for very large systems in highly parallel computers.
- Note: the
CellList
is now a mutablestruct
(it was immutable). This was not part of the API, but it is worth mentioning.
Merged pull requests:
Closed issues:
v0.8.26
CellListMap v0.8.26
v0.8.25
CellListMap v0.8.25
v0.8.24
CellListMap v0.8.24
v0.8.23
- fixed additional doc typos
v0.8.23
fixed some doc typos
Full Changelog: v0.8.23+docs1...v0.8.23+docs2