fix: copy AtomicSystem arrays and carry energy, virial, stress - #189
Open
galjos wants to merge 1 commit into
Open
fix: copy AtomicSystem arrays and carry energy, virial, stress#189galjos wants to merge 1 commit into
galjos wants to merge 1 commit into
Conversation
copy() forwarded only pos, vel, forces, charges, cell and topology by reference, so the copy aliased the source arrays and silently dropped energy, virial and stress. Mutating the copy, for example via center() or randomize_positions(), therefore corrupted the original system. The arrays are now copied and every field is carried over.
Contributor
|
PYLINT REPORT Your code has been rated at 9.78/10 Full reportRaw metrics
Duplication
Messages by category
% errors / warnings by module
Messages
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #189 +/- ##
=======================================
Coverage 93.94% 93.94%
=======================================
Files 177 177
Lines 9227 9227
=======================================
Hits 8668 8668
Misses 559 559
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
copy()aliased the position, velocity, force, and charge arrays and dropped energy, virial, and stress, so mutating the copy (for examplecenter()) corrupted the source and property values vanished. The arrays are now copied and all three fields carried over.The added test covers value round-trip, aliasing, mutation isolation, and the empty system.
Fixes #188.