Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dpdata/cp2k/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __next__(self):
# assert all(eq2), (log_info_dict,xyz_info_dict,'There may be errors in the file. If it is a restart task; use restart=True')
# assert all(eq3), (log_info_dict,xyz_info_dict,'There may be errors in the file. If it is a restart task; use restart=True')
assert math.isclose(
log_info_dict["energies"], xyz_info_dict["energies"], abs_tol=1.0e-6
log_info_dict["energies"][0], xyz_info_dict["energies"][0], abs_tol=1.0e-6
), (
log_info_dict["energies"],
xyz_info_dict["energies"],
Expand Down
Loading