Changeset 2e7888 for src/Graph/BondGraph.hpp
- Timestamp:
- Dec 26, 2025, 9:39:01 PM (2 days ago)
- Branches:
- Candidate_v1.7.1, stable
- Children:
- 47ebb2
- Parents:
- 802a9d
- git-author:
- Frederik Heber <frederik.heber@…> (11/24/25 11:45:10)
- git-committer:
- Frederik Heber <frederik.heber@…> (12/26/25 21:39:01)
- File:
-
- 1 edited
-
src/Graph/BondGraph.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Graph/BondGraph.hpp
r802a9d r2e7888 194 194 // get all elements 195 195 const std::set< const element *> PresentElements = getElementSetFromNumbers(elements); 196 LOG(2, "INFO: Present elememts are " << PresentElements << "."); 196 197 197 198 // count atoms in molecule = dimension of matrix (also give each unique name and continuous numbering) 198 199 const unsigned int counter = Set.size(); 199 200 if (counter > 1) { 200 LOG(1, "STATUS: Setting max bond distance."); 201 LOG(1, "STATUS: Creating LinkedCell structure for given " << counter << " atoms."); 202 LinkedCell::LinkedCell_View LC = getLinkedCell(getMaxPossibleBondDistance(PresentElements)); 201 const double linkedCellLength = getMaxPossibleBondDistance(PresentElements) + BondThreshold; 202 LOG(1, "STATUS: Using max bond distance plus threshold as linked cell edge length of " << linkedCellLength << "."); 203 LOG(1, "STATUS: Creating LinkedCell structure for givenlinkedCellLength" << counter << " atoms."); 204 LinkedCell::LinkedCell_View LC = getLinkedCell(linkedCellLength); 205 203 206 204 207 LOG(1, "STATUS: Evaluating distance criterion for each atom.");
Note:
See TracChangeset
for help on using the changeset viewer.
