Closed aleaverfay closed 1 year ago
Attention: 1 lines
in your changes are missing coverage. Please review.
Comparison is base (
ace29a8
) 94.93% compared to head (d2be565
) 94.95%. Report is 2 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This PR speeds up the Floyd Warshall O(N^3) all-pairs-shortest-path algorithm In PoseStack construction with Dijkstra's single-source shortest-path-to-all-other-vertices O(N^2 + NKlnK) algorithm when a threshold/cutoff weight/distance is given where K is the expected number of nodes that will be traversed from each starting node before the threshold is reached. For an average sized antibody sequence (e.g. Pertuzumab) this is a roughly 100x speedup. The N^2 component is to simply initialize the output weight tensor / examine all input edge weights.