Closed JintaoWu98 closed 3 months ago
Attention: Patch coverage is 96.96970%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 73.98%. Comparing base (
8ba45be
) to head (693b2f3
). Report is 4 commits behind head on main.
Files with missing lines | Patch % | Lines |
---|---|---|
arc/species/conformers.py | 92.85% | 0 Missing and 1 partial :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The previous conformer comparison algorithm required a distance matrix (d-matrix) for operations. In this update, we introduce a new variable,
fl_distance
, which represents the distance between the first and last elements. This method provides a less costly preliminary comparison before invoking the d-matrix comparison. Now, the d-matrix comparison will only be executed when necessary, optimizing the overall efficiency of the algorithm.