Skip to content

ENH: speed up reading of multiple images from LAMMPS dump files

username-removed-131198 requested to merge lammps-dump-read-multiple into master

The existing reader is already multi-config capable, but is currently very slow because list.pop(0) is O(N), not O(1). This MR changes it to use deque.popleft() which gives much better performance.

Merge request reports