Skip to content

Commit 5687d4e

Browse files
authored
Merge pull request #318 from CCPBioSim/317-bug-invalid-eigenvalues
Fixing #317 Invalid Eigenvalues
2 parents f2e0e7c + b5fec7c commit 5687d4e

65 files changed

Lines changed: 160 additions & 159 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CodeEntropy/levels/level_dag.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ def _run_frame_stage(
179179
Notes:
180180
The task title shows the current frame index being processed.
181181
"""
182+
u = shared_data["reduced_universe"]
182183
n_frames = shared_data["n_frames"]
183184

184185
task: TaskID | None = None
@@ -196,11 +197,11 @@ def _run_frame_stage(
196197
title="Initializing",
197198
)
198199

199-
for frame_index in range(n_frames):
200+
for ts in u.trajectory:
200201
if progress is not None and task is not None:
201-
progress.update(task, title=f"Frame {frame_index}")
202+
progress.update(task, title=f"Frame {ts.frame}")
202203

203-
frame_out = self._frame_dag.execute_frame(shared_data, frame_index)
204+
frame_out = self._frame_dag.execute_frame(shared_data, ts.frame)
204205
self._reduce_one_frame(shared_data, frame_out)
205206

206207
if progress is not None and task is not None:

tests/regression/baselines/benzaldehyde/axes_off.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzaldehyde/combined_forcetorque_false.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzaldehyde/default.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzaldehyde/frame_window.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {
3333
"components": {
34-
"united_atom:Transvibrational": 0.06976323861519099,
35-
"united_atom:Rovibrational": 43.1148685234083,
36-
"residue:FTmat-Transvibrational": 81.88770108142911,
37-
"residue:FTmat-Rovibrational": 54.95209390854072,
34+
"united_atom:Transvibrational": 40.30267601961045,
35+
"united_atom:Rovibrational": 38.21906858443615,
36+
"residue:FTmat-Transvibrational": 73.41098578352612,
37+
"residue:FTmat-Rovibrational": 57.881504393660364,
3838
"united_atom:Conformational": 0.0,
3939
"residue:Conformational": 0.0,
4040
"residue:Orientational": 20.481571492615355
4141
},
42-
"total": 200.50599824460866
42+
"total": 230.29580627384846
4343
}
4444
}
4545
}

tests/regression/baselines/benzaldehyde/grouping_each.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzaldehyde/rad.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzaldehyde/selection_subset.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzene/axes_off.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

tests/regression/baselines/benzene/combined_forcetorque_off.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"python": "3.13.5",
2727
"platform": "Linux-6.17.0-1017-oem-x86_64-with-glibc2.39",
2828
"codeentropy_version": "2.1.1",
29-
"git_sha": "ac1f2ac999409433f391e45cffd116cdecc46096"
29+
"git_sha": "f2e0e7c509c6683eea94dd25a25bba2639c0bb96"
3030
},
3131
"groups": {
3232
"0": {

0 commit comments

Comments
 (0)