[cee0b57] | 1 | /*
|
---|
| 2 | * molecule_graph.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Oct 5, 2009
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[f66195] | 8 | #include "atom.hpp"
|
---|
| 9 | #include "bond.hpp"
|
---|
[b70721] | 10 | #include "bondgraph.hpp"
|
---|
[cee0b57] | 11 | #include "config.hpp"
|
---|
[f66195] | 12 | #include "element.hpp"
|
---|
| 13 | #include "helpers.hpp"
|
---|
[b8b75d] | 14 | #include "linkedcell.hpp"
|
---|
[f66195] | 15 | #include "lists.hpp"
|
---|
[e138de] | 16 | #include "log.hpp"
|
---|
[cee0b57] | 17 | #include "memoryallocator.hpp"
|
---|
| 18 | #include "molecule.hpp"
|
---|
[b34306] | 19 | #include "World.hpp"
|
---|
[cee0b57] | 20 |
|
---|
[9eefda] | 21 | struct BFSAccounting
|
---|
| 22 | {
|
---|
| 23 | atom **PredecessorList;
|
---|
| 24 | int *ShortestPathList;
|
---|
| 25 | enum Shading *ColorList;
|
---|
| 26 | class StackClass<atom *> *BFSStack;
|
---|
| 27 | class StackClass<atom *> *TouchedStack;
|
---|
| 28 | int AtomCount;
|
---|
| 29 | int BondOrder;
|
---|
| 30 | atom *Root;
|
---|
| 31 | bool BackStepping;
|
---|
| 32 | int CurrentGraphNr;
|
---|
| 33 | int ComponentNr;
|
---|
| 34 | };
|
---|
[cee0b57] | 35 |
|
---|
[9eefda] | 36 | /** Accounting data for Depth First Search.
|
---|
| 37 | */
|
---|
| 38 | struct DFSAccounting
|
---|
| 39 | {
|
---|
| 40 | class StackClass<atom *> *AtomStack;
|
---|
| 41 | class StackClass<bond *> *BackEdgeStack;
|
---|
| 42 | int CurrentGraphNr;
|
---|
| 43 | int ComponentNumber;
|
---|
| 44 | atom *Root;
|
---|
| 45 | bool BackStepping;
|
---|
| 46 | };
|
---|
| 47 |
|
---|
| 48 | /************************************* Functions for class molecule *********************************/
|
---|
[cee0b57] | 49 |
|
---|
| 50 | /** Creates an adjacency list of the molecule.
|
---|
| 51 | * We obtain an outside file with the indices of atoms which are bondmembers.
|
---|
| 52 | */
|
---|
[e138de] | 53 | void molecule::CreateAdjacencyListFromDbondFile(ifstream *input)
|
---|
[cee0b57] | 54 | {
|
---|
| 55 |
|
---|
| 56 | // 1 We will parse bonds out of the dbond file created by tremolo.
|
---|
[44a59b] | 57 | int atom1, atom2;
|
---|
| 58 | atom *Walker, *OtherWalker;
|
---|
| 59 |
|
---|
[9eefda] | 60 | if (!input) {
|
---|
[e138de] | 61 | Log() << Verbose(1) << "Opening silica failed \n";
|
---|
[44a59b] | 62 | };
|
---|
| 63 |
|
---|
| 64 | *input >> ws >> atom1;
|
---|
| 65 | *input >> ws >> atom2;
|
---|
[e138de] | 66 | Log() << Verbose(1) << "Scanning file\n";
|
---|
[44a59b] | 67 | while (!input->eof()) // Check whether we read everything already
|
---|
| 68 | {
|
---|
| 69 | *input >> ws >> atom1;
|
---|
| 70 | *input >> ws >> atom2;
|
---|
| 71 |
|
---|
[9eefda] | 72 | if (atom2 < atom1) //Sort indices of atoms in order
|
---|
[44a59b] | 73 | flip(atom1, atom2);
|
---|
[9eefda] | 74 | Walker = FindAtom(atom1);
|
---|
| 75 | OtherWalker = FindAtom(atom2);
|
---|
[44a59b] | 76 | AddBond(Walker, OtherWalker); //Add the bond between the two atoms with respective indices.
|
---|
| 77 | }
|
---|
[9eefda] | 78 | }
|
---|
| 79 | ;
|
---|
[cee0b57] | 80 |
|
---|
| 81 | /** Creates an adjacency list of the molecule.
|
---|
| 82 | * Generally, we use the CSD approach to bond recognition, that is the the distance
|
---|
| 83 | * between two atoms A and B must be within [Rcov(A)+Rcov(B)-t,Rcov(A)+Rcov(B)+t] with
|
---|
| 84 | * a threshold t = 0.4 Angstroem.
|
---|
| 85 | * To make it O(N log N) the function uses the linked-cell technique as follows:
|
---|
| 86 | * The procedure is step-wise:
|
---|
| 87 | * -# Remove every bond in list
|
---|
| 88 | * -# Count the atoms in the molecule with CountAtoms()
|
---|
| 89 | * -# partition cell into smaller linked cells of size \a bonddistance
|
---|
| 90 | * -# put each atom into its corresponding cell
|
---|
| 91 | * -# go through every cell, check the atoms therein against all possible bond partners in the 27 adjacent cells, add bond if true
|
---|
| 92 | * -# correct the bond degree iteratively (single->double->triple bond)
|
---|
| 93 | * -# finally print the bond list to \a *out if desired
|
---|
| 94 | * \param *out out stream for printing the matrix, NULL if no output
|
---|
| 95 | * \param bonddistance length of linked cells (i.e. maximum minimal length checked)
|
---|
| 96 | * \param IsAngstroem whether coordinate system is gauged to Angstroem or Bohr radii
|
---|
[b70721] | 97 | * \param *minmaxdistance function to give upper and lower bound on whether particle is bonded to some other
|
---|
| 98 | * \param *BG BondGraph with the member function above or NULL, if just standard covalent should be used.
|
---|
[cee0b57] | 99 | */
|
---|
[e138de] | 100 | void molecule::CreateAdjacencyList(double bonddistance, bool IsAngstroem, void (BondGraph::*minmaxdistance)(BondedParticle * const , BondedParticle * const , double &, double &, bool), BondGraph *BG)
|
---|
[cee0b57] | 101 | {
|
---|
[b8b75d] | 102 | atom *Walker = NULL;
|
---|
| 103 | atom *OtherWalker = NULL;
|
---|
| 104 | atom **AtomMap = NULL;
|
---|
| 105 | int n[NDIM];
|
---|
[b70721] | 106 | double MinDistance, MaxDistance;
|
---|
[b8b75d] | 107 | LinkedCell *LC = NULL;
|
---|
[b70721] | 108 | bool free_BG = false;
|
---|
[b34306] | 109 | double * const cell_size = World::get()->cell_size;
|
---|
[b70721] | 110 |
|
---|
| 111 | if (BG == NULL) {
|
---|
| 112 | BG = new BondGraph(IsAngstroem);
|
---|
| 113 | free_BG = true;
|
---|
| 114 | }
|
---|
[cee0b57] | 115 |
|
---|
| 116 | BondDistance = bonddistance; // * ((IsAngstroem) ? 1. : 1./AtomicLengthToAngstroem);
|
---|
[e138de] | 117 | Log() << Verbose(0) << "Begin of CreateAdjacencyList." << endl;
|
---|
[cee0b57] | 118 | // remove every bond from the list
|
---|
[ae38fb] | 119 | bond *Binder = NULL;
|
---|
| 120 | while (last->previous != first) {
|
---|
| 121 | Binder = last->previous;
|
---|
| 122 | Binder->leftatom->UnregisterBond(Binder);
|
---|
| 123 | Binder->rightatom->UnregisterBond(Binder);
|
---|
| 124 | removewithoutcheck(Binder);
|
---|
[cee0b57] | 125 | }
|
---|
[3c349b] | 126 | BondCount = 0;
|
---|
[cee0b57] | 127 |
|
---|
| 128 | // count atoms in molecule = dimension of matrix (also give each unique name and continuous numbering)
|
---|
[e138de] | 129 | CountAtoms();
|
---|
| 130 | Log() << Verbose(1) << "AtomCount " << AtomCount << " and bonddistance is " << bonddistance << "." << endl;
|
---|
[cee0b57] | 131 |
|
---|
[34e0013] | 132 | if ((AtomCount > 1) && (bonddistance > 1.)) {
|
---|
[e138de] | 133 | Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl;
|
---|
[b8b75d] | 134 | LC = new LinkedCell(this, bonddistance);
|
---|
[cee0b57] | 135 |
|
---|
[b8b75d] | 136 | // create a list to map Tesselpoint::nr to atom *
|
---|
[e138de] | 137 | Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl;
|
---|
[7218f8] | 138 | AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount");
|
---|
[cee0b57] | 139 | Walker = start;
|
---|
[b8b75d] | 140 | while (Walker->next != end) {
|
---|
[cee0b57] | 141 | Walker = Walker->next;
|
---|
[b8b75d] | 142 | AtomMap[Walker->nr] = Walker;
|
---|
[cee0b57] | 143 | }
|
---|
| 144 |
|
---|
| 145 | // 3a. go through every cell
|
---|
[e138de] | 146 | Log() << Verbose(2) << "Celling ... " << endl;
|
---|
[b8b75d] | 147 | for (LC->n[0] = 0; LC->n[0] < LC->N[0]; LC->n[0]++)
|
---|
| 148 | for (LC->n[1] = 0; LC->n[1] < LC->N[1]; LC->n[1]++)
|
---|
| 149 | for (LC->n[2] = 0; LC->n[2] < LC->N[2]; LC->n[2]++) {
|
---|
[776b64] | 150 | const LinkedNodes *List = LC->GetCurrentCell();
|
---|
[e138de] | 151 | //Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;
|
---|
[b8b75d] | 152 | if (List != NULL) {
|
---|
[776b64] | 153 | for (LinkedNodes::const_iterator Runner = List->begin(); Runner != List->end(); Runner++) {
|
---|
[b8b75d] | 154 | Walker = AtomMap[(*Runner)->nr];
|
---|
[e138de] | 155 | //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl;
|
---|
[cee0b57] | 156 | // 3c. check for possible bond between each atom in this and every one in the 27 cells
|
---|
[9eefda] | 157 | for (n[0] = -1; n[0] <= 1; n[0]++)
|
---|
| 158 | for (n[1] = -1; n[1] <= 1; n[1]++)
|
---|
| 159 | for (n[2] = -1; n[2] <= 1; n[2]++) {
|
---|
[776b64] | 160 | const LinkedNodes *OtherList = LC->GetRelativeToCurrentCell(n);
|
---|
[e138de] | 161 | //Log() << Verbose(2) << "Current relative cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;
|
---|
[b8b75d] | 162 | if (OtherList != NULL) {
|
---|
[776b64] | 163 | for (LinkedNodes::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) {
|
---|
[b8b75d] | 164 | if ((*OtherRunner)->nr > Walker->nr) {
|
---|
| 165 | OtherWalker = AtomMap[(*OtherRunner)->nr];
|
---|
[e138de] | 166 | //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl;
|
---|
[b70721] | 167 | (BG->*minmaxdistance)(Walker, OtherWalker, MinDistance, MaxDistance, IsAngstroem);
|
---|
| 168 | const double distance = OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size);
|
---|
| 169 | const bool status = (distance <= MaxDistance * MaxDistance) && (distance >= MinDistance * MinDistance);
|
---|
| 170 | if ((OtherWalker->father->nr > Walker->father->nr) && (status)) { // create bond if distance is smaller
|
---|
[e138de] | 171 | //Log() << Verbose(1) << "Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "." << endl;
|
---|
[9eefda] | 172 | AddBond(Walker->father, OtherWalker->father, 1); // also increases molecule::BondCount
|
---|
[b8b75d] | 173 | } else {
|
---|
[e138de] | 174 | //Log() << Verbose(1) << "Not Adding: Wrong label order or distance too great." << endl;
|
---|
[b8b75d] | 175 | }
|
---|
[cee0b57] | 176 | }
|
---|
| 177 | }
|
---|
| 178 | }
|
---|
| 179 | }
|
---|
| 180 | }
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
[b8b75d] | 183 | Free(&AtomMap);
|
---|
[9eefda] | 184 | delete (LC);
|
---|
[e138de] | 185 | Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl;
|
---|
[cee0b57] | 186 |
|
---|
[b8b75d] | 187 | // correct bond degree by comparing valence and bond degree
|
---|
[e138de] | 188 | Log() << Verbose(2) << "Correcting bond degree ... " << endl;
|
---|
| 189 | CorrectBondDegree();
|
---|
[cee0b57] | 190 |
|
---|
[b8b75d] | 191 | // output bonds for debugging (if bond chain list was correctly installed)
|
---|
[e138de] | 192 | ActOnAllAtoms( &atom::OutputBondOfAtom );
|
---|
[b8b75d] | 193 | } else
|
---|
[e138de] | 194 | Log() << Verbose(1) << "AtomCount is " << AtomCount << ", thus no bonds, no connections!." << endl;
|
---|
| 195 | Log() << Verbose(0) << "End of CreateAdjacencyList." << endl;
|
---|
[b70721] | 196 | if (free_BG)
|
---|
| 197 | delete(BG);
|
---|
[9eefda] | 198 | }
|
---|
| 199 | ;
|
---|
[cee0b57] | 200 |
|
---|
[b8b75d] | 201 | /** Prints a list of all bonds to \a *out.
|
---|
| 202 | * \param output stream
|
---|
| 203 | */
|
---|
[e138de] | 204 | void molecule::OutputBondsList() const
|
---|
[b8b75d] | 205 | {
|
---|
[e138de] | 206 | Log() << Verbose(1) << endl << "From contents of bond chain list:";
|
---|
[b8b75d] | 207 | bond *Binder = first;
|
---|
[9eefda] | 208 | while (Binder->next != last) {
|
---|
[b8b75d] | 209 | Binder = Binder->next;
|
---|
[e138de] | 210 | Log() << Verbose(0) << *Binder << "\t" << endl;
|
---|
[b8b75d] | 211 | }
|
---|
[e138de] | 212 | Log() << Verbose(0) << endl;
|
---|
[9eefda] | 213 | }
|
---|
| 214 | ;
|
---|
[cee0b57] | 215 |
|
---|
[b8b75d] | 216 | /** correct bond degree by comparing valence and bond degree.
|
---|
| 217 | * correct Bond degree of each bond by checking both bond partners for a mismatch between valence and current sum of bond degrees,
|
---|
| 218 | * iteratively increase the one first where the other bond partner has the fewest number of bonds (i.e. in general bonds oxygene
|
---|
| 219 | * preferred over carbon bonds). Beforehand, we had picked the first mismatching partner, which lead to oxygenes with single instead of
|
---|
| 220 | * double bonds as was expected.
|
---|
| 221 | * \param *out output stream for debugging
|
---|
| 222 | * \return number of bonds that could not be corrected
|
---|
| 223 | */
|
---|
[e138de] | 224 | int molecule::CorrectBondDegree() const
|
---|
[b8b75d] | 225 | {
|
---|
[99593f] | 226 | int No = 0, OldNo = -1;
|
---|
[b8b75d] | 227 |
|
---|
| 228 | if (BondCount != 0) {
|
---|
[e138de] | 229 | Log() << Verbose(1) << "Correcting Bond degree of each bond ... " << endl;
|
---|
[b8b75d] | 230 | do {
|
---|
[99593f] | 231 | OldNo = No;
|
---|
[e138de] | 232 | No = SumPerAtom( &atom::CorrectBondDegree );
|
---|
[99593f] | 233 | } while (OldNo != No);
|
---|
[e138de] | 234 | Log() << Verbose(0) << " done." << endl;
|
---|
[b8b75d] | 235 | } else {
|
---|
[e138de] | 236 | Log() << Verbose(1) << "BondCount is " << BondCount << ", no bonds between any of the " << AtomCount << " atoms." << endl;
|
---|
[b8b75d] | 237 | }
|
---|
[e138de] | 238 | Log() << Verbose(0) << No << " bonds could not be corrected." << endl;
|
---|
[cee0b57] | 239 |
|
---|
[266237] | 240 | return (No);
|
---|
[9eefda] | 241 | }
|
---|
| 242 | ;
|
---|
[cee0b57] | 243 |
|
---|
| 244 | /** Counts all cyclic bonds and returns their number.
|
---|
| 245 | * \note Hydrogen bonds can never by cyclic, thus no check for that
|
---|
| 246 | * \param *out output stream for debugging
|
---|
| 247 | * \return number opf cyclic bonds
|
---|
| 248 | */
|
---|
[e138de] | 249 | int molecule::CountCyclicBonds()
|
---|
[cee0b57] | 250 | {
|
---|
[266237] | 251 | NoCyclicBonds = 0;
|
---|
[cee0b57] | 252 | int *MinimumRingSize = NULL;
|
---|
| 253 | MoleculeLeafClass *Subgraphs = NULL;
|
---|
| 254 | class StackClass<bond *> *BackEdgeStack = NULL;
|
---|
| 255 | bond *Binder = first;
|
---|
| 256 | if ((Binder->next != last) && (Binder->next->Type == Undetermined)) {
|
---|
[e138de] | 257 | Log() << Verbose(0) << "No Depth-First-Search analysis performed so far, calling ..." << endl;
|
---|
| 258 | Subgraphs = DepthFirstSearchAnalysis(BackEdgeStack);
|
---|
[cee0b57] | 259 | while (Subgraphs->next != NULL) {
|
---|
| 260 | Subgraphs = Subgraphs->next;
|
---|
[9eefda] | 261 | delete (Subgraphs->previous);
|
---|
[cee0b57] | 262 | }
|
---|
[9eefda] | 263 | delete (Subgraphs);
|
---|
| 264 | delete[] (MinimumRingSize);
|
---|
[cee0b57] | 265 | }
|
---|
[9eefda] | 266 | while (Binder->next != last) {
|
---|
[cee0b57] | 267 | Binder = Binder->next;
|
---|
| 268 | if (Binder->Cyclic)
|
---|
[266237] | 269 | NoCyclicBonds++;
|
---|
[cee0b57] | 270 | }
|
---|
[9eefda] | 271 | delete (BackEdgeStack);
|
---|
[266237] | 272 | return NoCyclicBonds;
|
---|
[9eefda] | 273 | }
|
---|
| 274 | ;
|
---|
[b8b75d] | 275 |
|
---|
[cee0b57] | 276 | /** Returns Shading as a char string.
|
---|
| 277 | * \param color the Shading
|
---|
| 278 | * \return string of the flag
|
---|
| 279 | */
|
---|
[fa649a] | 280 | string molecule::GetColor(enum Shading color) const
|
---|
[cee0b57] | 281 | {
|
---|
[9eefda] | 282 | switch (color) {
|
---|
[cee0b57] | 283 | case white:
|
---|
| 284 | return "white";
|
---|
| 285 | break;
|
---|
| 286 | case lightgray:
|
---|
| 287 | return "lightgray";
|
---|
| 288 | break;
|
---|
| 289 | case darkgray:
|
---|
| 290 | return "darkgray";
|
---|
| 291 | break;
|
---|
| 292 | case black:
|
---|
| 293 | return "black";
|
---|
| 294 | break;
|
---|
| 295 | default:
|
---|
| 296 | return "uncolored";
|
---|
| 297 | break;
|
---|
| 298 | };
|
---|
[9eefda] | 299 | }
|
---|
| 300 | ;
|
---|
[cee0b57] | 301 |
|
---|
[9eefda] | 302 | /** Sets atom::GraphNr and atom::LowpointNr to BFSAccounting::CurrentGraphNr.
|
---|
| 303 | * \param *out output stream for debugging
|
---|
| 304 | * \param *Walker current node
|
---|
| 305 | * \param &BFS structure with accounting data for BFS
|
---|
| 306 | */
|
---|
[e138de] | 307 | void DepthFirstSearchAnalysis_SetWalkersGraphNr(atom *&Walker, struct DFSAccounting &DFS)
|
---|
[174e0e] | 308 | {
|
---|
[9eefda] | 309 | if (!DFS.BackStepping) { // if we don't just return from (8)
|
---|
| 310 | Walker->GraphNr = DFS.CurrentGraphNr;
|
---|
| 311 | Walker->LowpointNr = DFS.CurrentGraphNr;
|
---|
[e138de] | 312 | Log() << Verbose(1) << "Setting Walker[" << Walker->Name << "]'s number to " << Walker->GraphNr << " with Lowpoint " << Walker->LowpointNr << "." << endl;
|
---|
[9eefda] | 313 | DFS.AtomStack->Push(Walker);
|
---|
| 314 | DFS.CurrentGraphNr++;
|
---|
[174e0e] | 315 | }
|
---|
[9eefda] | 316 | }
|
---|
| 317 | ;
|
---|
[174e0e] | 318 |
|
---|
[9eefda] | 319 | /** During DFS goes along unvisited bond and touches other atom.
|
---|
| 320 | * Sets bond::type, if
|
---|
| 321 | * -# BackEdge: set atom::LowpointNr and push on \a BackEdgeStack
|
---|
| 322 | * -# TreeEgde: set atom::Ancestor and continue with Walker along this edge
|
---|
| 323 | * Continue until molecule::FindNextUnused() finds no more unused bonds.
|
---|
| 324 | * \param *out output stream for debugging
|
---|
| 325 | * \param *mol molecule with atoms and finding unused bonds
|
---|
| 326 | * \param *&Binder current edge
|
---|
| 327 | * \param &DFS DFS accounting data
|
---|
| 328 | */
|
---|
[e138de] | 329 | void DepthFirstSearchAnalysis_ProbeAlongUnusedBond(const molecule * const mol, atom *&Walker, bond *&Binder, struct DFSAccounting &DFS)
|
---|
[174e0e] | 330 | {
|
---|
| 331 | atom *OtherAtom = NULL;
|
---|
| 332 |
|
---|
| 333 | do { // (3) if Walker has no unused egdes, go to (5)
|
---|
[9eefda] | 334 | DFS.BackStepping = false; // reset backstepping flag for (8)
|
---|
[174e0e] | 335 | if (Binder == NULL) // if we don't just return from (11), Binder is already set to next unused
|
---|
| 336 | Binder = mol->FindNextUnused(Walker);
|
---|
| 337 | if (Binder == NULL)
|
---|
| 338 | break;
|
---|
[e138de] | 339 | Log() << Verbose(2) << "Current Unused Bond is " << *Binder << "." << endl;
|
---|
[174e0e] | 340 | // (4) Mark Binder used, ...
|
---|
| 341 | Binder->MarkUsed(black);
|
---|
| 342 | OtherAtom = Binder->GetOtherAtom(Walker);
|
---|
[e138de] | 343 | Log() << Verbose(2) << "(4) OtherAtom is " << OtherAtom->Name << "." << endl;
|
---|
[174e0e] | 344 | if (OtherAtom->GraphNr != -1) {
|
---|
| 345 | // (4a) ... if "other" atom has been visited (GraphNr != 0), set lowpoint to minimum of both, go to (3)
|
---|
| 346 | Binder->Type = BackEdge;
|
---|
[9eefda] | 347 | DFS.BackEdgeStack->Push(Binder);
|
---|
| 348 | Walker->LowpointNr = (Walker->LowpointNr < OtherAtom->GraphNr) ? Walker->LowpointNr : OtherAtom->GraphNr;
|
---|
[e138de] | 349 | Log() << Verbose(3) << "(4a) Visited: Setting Lowpoint of Walker[" << Walker->Name << "] to " << Walker->LowpointNr << "." << endl;
|
---|
[174e0e] | 350 | } else {
|
---|
| 351 | // (4b) ... otherwise set OtherAtom as Ancestor of Walker and Walker as OtherAtom, go to (2)
|
---|
| 352 | Binder->Type = TreeEdge;
|
---|
| 353 | OtherAtom->Ancestor = Walker;
|
---|
| 354 | Walker = OtherAtom;
|
---|
[e138de] | 355 | Log() << Verbose(3) << "(4b) Not Visited: OtherAtom[" << OtherAtom->Name << "]'s Ancestor is now " << OtherAtom->Ancestor->Name << ", Walker is OtherAtom " << OtherAtom->Name << "." << endl;
|
---|
[174e0e] | 356 | break;
|
---|
| 357 | }
|
---|
| 358 | Binder = NULL;
|
---|
[9eefda] | 359 | } while (1); // (3)
|
---|
| 360 | }
|
---|
| 361 | ;
|
---|
[174e0e] | 362 |
|
---|
[9eefda] | 363 | /** Checks whether we have a new component.
|
---|
| 364 | * if atom::LowpointNr of \a *&Walker is greater than atom::GraphNr of its atom::Ancestor, we have a new component.
|
---|
| 365 | * Meaning that if we touch upon a node who suddenly has a smaller atom::LowpointNr than its ancestor, then we
|
---|
| 366 | * have a found a new branch in the graph tree.
|
---|
| 367 | * \param *out output stream for debugging
|
---|
| 368 | * \param *mol molecule with atoms and finding unused bonds
|
---|
| 369 | * \param *&Walker current node
|
---|
| 370 | * \param &DFS DFS accounting data
|
---|
| 371 | */
|
---|
[e138de] | 372 | void DepthFirstSearchAnalysis_CheckForaNewComponent(const molecule * const mol, atom *&Walker, struct DFSAccounting &DFS, MoleculeLeafClass *&LeafWalker)
|
---|
[174e0e] | 373 | {
|
---|
| 374 | atom *OtherAtom = NULL;
|
---|
| 375 |
|
---|
| 376 | // (5) if Ancestor of Walker is ...
|
---|
[e138de] | 377 | Log() << Verbose(1) << "(5) Number of Walker[" << Walker->Name << "]'s Ancestor[" << Walker->Ancestor->Name << "] is " << Walker->Ancestor->GraphNr << "." << endl;
|
---|
[174e0e] | 378 |
|
---|
[9eefda] | 379 | if (Walker->Ancestor->GraphNr != DFS.Root->GraphNr) {
|
---|
[174e0e] | 380 | // (6) (Ancestor of Walker is not Root)
|
---|
| 381 | if (Walker->LowpointNr < Walker->Ancestor->GraphNr) {
|
---|
| 382 | // (6a) set Ancestor's Lowpoint number to minimum of of its Ancestor and itself, go to Step(8)
|
---|
| 383 | Walker->Ancestor->LowpointNr = (Walker->Ancestor->LowpointNr < Walker->LowpointNr) ? Walker->Ancestor->LowpointNr : Walker->LowpointNr;
|
---|
[e138de] | 384 | Log() << Verbose(2) << "(6) Setting Walker[" << Walker->Name << "]'s Ancestor[" << Walker->Ancestor->Name << "]'s Lowpoint to " << Walker->Ancestor->LowpointNr << "." << endl;
|
---|
[174e0e] | 385 | } else {
|
---|
| 386 | // (7) (Ancestor of Walker is a separating vertex, remove all from stack till Walker (including), these and Ancestor form a component
|
---|
| 387 | Walker->Ancestor->SeparationVertex = true;
|
---|
[e138de] | 388 | Log() << Verbose(2) << "(7) Walker[" << Walker->Name << "]'s Ancestor[" << Walker->Ancestor->Name << "]'s is a separating vertex, creating component." << endl;
|
---|
[9eefda] | 389 | mol->SetNextComponentNumber(Walker->Ancestor, DFS.ComponentNumber);
|
---|
[e138de] | 390 | Log() << Verbose(3) << "(7) Walker[" << Walker->Name << "]'s Ancestor's Compont is " << DFS.ComponentNumber << "." << endl;
|
---|
[9eefda] | 391 | mol->SetNextComponentNumber(Walker, DFS.ComponentNumber);
|
---|
[e138de] | 392 | Log() << Verbose(3) << "(7) Walker[" << Walker->Name << "]'s Compont is " << DFS.ComponentNumber << "." << endl;
|
---|
[174e0e] | 393 | do {
|
---|
[9eefda] | 394 | OtherAtom = DFS.AtomStack->PopLast();
|
---|
[174e0e] | 395 | LeafWalker->Leaf->AddCopyAtom(OtherAtom);
|
---|
[9eefda] | 396 | mol->SetNextComponentNumber(OtherAtom, DFS.ComponentNumber);
|
---|
[e138de] | 397 | Log() << Verbose(3) << "(7) Other[" << OtherAtom->Name << "]'s Compont is " << DFS.ComponentNumber << "." << endl;
|
---|
[174e0e] | 398 | } while (OtherAtom != Walker);
|
---|
[9eefda] | 399 | DFS.ComponentNumber++;
|
---|
[174e0e] | 400 | }
|
---|
| 401 | // (8) Walker becomes its Ancestor, go to (3)
|
---|
[e138de] | 402 | Log() << Verbose(2) << "(8) Walker[" << Walker->Name << "] is now its Ancestor " << Walker->Ancestor->Name << ", backstepping. " << endl;
|
---|
[174e0e] | 403 | Walker = Walker->Ancestor;
|
---|
[9eefda] | 404 | DFS.BackStepping = true;
|
---|
[174e0e] | 405 | }
|
---|
[9eefda] | 406 | }
|
---|
| 407 | ;
|
---|
[174e0e] | 408 |
|
---|
[9eefda] | 409 | /** Cleans the root stack when we have found a component.
|
---|
| 410 | * If we are not DFSAccounting::BackStepping, then we clear the root stack by putting everything into a
|
---|
| 411 | * component down till we meet DFSAccounting::Root.
|
---|
| 412 | * \param *out output stream for debugging
|
---|
| 413 | * \param *mol molecule with atoms and finding unused bonds
|
---|
| 414 | * \param *&Walker current node
|
---|
| 415 | * \param *&Binder current edge
|
---|
| 416 | * \param &DFS DFS accounting data
|
---|
| 417 | */
|
---|
[e138de] | 418 | void DepthFirstSearchAnalysis_CleanRootStackDownTillWalker(const molecule * const mol, atom *&Walker, bond *&Binder, struct DFSAccounting &DFS, MoleculeLeafClass *&LeafWalker)
|
---|
[174e0e] | 419 | {
|
---|
| 420 | atom *OtherAtom = NULL;
|
---|
| 421 |
|
---|
[9eefda] | 422 | if (!DFS.BackStepping) { // coming from (8) want to go to (3)
|
---|
[174e0e] | 423 | // (9) remove all from stack till Walker (including), these and Root form a component
|
---|
[99593f] | 424 | //DFS.AtomStack->Output(out);
|
---|
[9eefda] | 425 | mol->SetNextComponentNumber(DFS.Root, DFS.ComponentNumber);
|
---|
[e138de] | 426 | Log() << Verbose(3) << "(9) Root[" << DFS.Root->Name << "]'s Component is " << DFS.ComponentNumber << "." << endl;
|
---|
[9eefda] | 427 | mol->SetNextComponentNumber(Walker, DFS.ComponentNumber);
|
---|
[e138de] | 428 | Log() << Verbose(3) << "(9) Walker[" << Walker->Name << "]'s Component is " << DFS.ComponentNumber << "." << endl;
|
---|
[174e0e] | 429 | do {
|
---|
[9eefda] | 430 | OtherAtom = DFS.AtomStack->PopLast();
|
---|
[174e0e] | 431 | LeafWalker->Leaf->AddCopyAtom(OtherAtom);
|
---|
[9eefda] | 432 | mol->SetNextComponentNumber(OtherAtom, DFS.ComponentNumber);
|
---|
[e138de] | 433 | Log() << Verbose(3) << "(7) Other[" << OtherAtom->Name << "]'s Compont is " << DFS.ComponentNumber << "." << endl;
|
---|
[174e0e] | 434 | } while (OtherAtom != Walker);
|
---|
[9eefda] | 435 | DFS.ComponentNumber++;
|
---|
[174e0e] | 436 |
|
---|
| 437 | // (11) Root is separation vertex, set Walker to Root and go to (4)
|
---|
[9eefda] | 438 | Walker = DFS.Root;
|
---|
[174e0e] | 439 | Binder = mol->FindNextUnused(Walker);
|
---|
[e138de] | 440 | Log() << Verbose(1) << "(10) Walker is Root[" << DFS.Root->Name << "], next Unused Bond is " << Binder << "." << endl;
|
---|
[174e0e] | 441 | if (Binder != NULL) { // Root is separation vertex
|
---|
[e138de] | 442 | Log() << Verbose(1) << "(11) Root is a separation vertex." << endl;
|
---|
[174e0e] | 443 | Walker->SeparationVertex = true;
|
---|
| 444 | }
|
---|
| 445 | }
|
---|
[9eefda] | 446 | }
|
---|
| 447 | ;
|
---|
| 448 |
|
---|
| 449 | /** Initializes DFSAccounting structure.
|
---|
| 450 | * \param *out output stream for debugging
|
---|
| 451 | * \param &DFS accounting structure to allocate
|
---|
[7218f8] | 452 | * \param *mol molecule with AtomCount, BondCount and all atoms
|
---|
[9eefda] | 453 | */
|
---|
[e138de] | 454 | void DepthFirstSearchAnalysis_Init(struct DFSAccounting &DFS, const molecule * const mol)
|
---|
[9eefda] | 455 | {
|
---|
[7218f8] | 456 | DFS.AtomStack = new StackClass<atom *> (mol->AtomCount);
|
---|
[9eefda] | 457 | DFS.CurrentGraphNr = 0;
|
---|
| 458 | DFS.ComponentNumber = 0;
|
---|
| 459 | DFS.BackStepping = false;
|
---|
[7218f8] | 460 | mol->ResetAllBondsToUnused();
|
---|
| 461 | mol->SetAtomValueToValue(-1, &atom::GraphNr);
|
---|
| 462 | mol->ActOnAllAtoms(&atom::InitComponentNr);
|
---|
| 463 | DFS.BackEdgeStack->ClearStack();
|
---|
[9eefda] | 464 | }
|
---|
| 465 | ;
|
---|
[174e0e] | 466 |
|
---|
[9eefda] | 467 | /** Free's DFSAccounting structure.
|
---|
| 468 | * \param *out output stream for debugging
|
---|
| 469 | * \param &DFS accounting structure to free
|
---|
| 470 | */
|
---|
[e138de] | 471 | void DepthFirstSearchAnalysis_Finalize(struct DFSAccounting &DFS)
|
---|
[9eefda] | 472 | {
|
---|
| 473 | delete (DFS.AtomStack);
|
---|
[7218f8] | 474 | // delete (DFS.BackEdgeStack); // DON'T free, see DepthFirstSearchAnalysis(), is returned as allocated
|
---|
[9eefda] | 475 | }
|
---|
| 476 | ;
|
---|
[174e0e] | 477 |
|
---|
[cee0b57] | 478 | /** Performs a Depth-First search on this molecule.
|
---|
| 479 | * Marks bonds in molecule as cyclic, bridge, ... and atoms as
|
---|
| 480 | * articulations points, ...
|
---|
| 481 | * We use the algorithm from [Even, Graph Algorithms, p.62].
|
---|
| 482 | * \param *out output stream for debugging
|
---|
| 483 | * \param *&BackEdgeStack NULL pointer to StackClass with all the found back edges, allocated and filled on return
|
---|
| 484 | * \return list of each disconnected subgraph as an individual molecule class structure
|
---|
| 485 | */
|
---|
[e138de] | 486 | MoleculeLeafClass * molecule::DepthFirstSearchAnalysis(class StackClass<bond *> *&BackEdgeStack) const
|
---|
[cee0b57] | 487 | {
|
---|
[9eefda] | 488 | struct DFSAccounting DFS;
|
---|
[cee0b57] | 489 | BackEdgeStack = new StackClass<bond *> (BondCount);
|
---|
[9eefda] | 490 | DFS.BackEdgeStack = BackEdgeStack;
|
---|
[cee0b57] | 491 | MoleculeLeafClass *SubGraphs = new MoleculeLeafClass(NULL);
|
---|
| 492 | MoleculeLeafClass *LeafWalker = SubGraphs;
|
---|
[9eefda] | 493 | int OldGraphNr = 0;
|
---|
[174e0e] | 494 | atom *Walker = NULL;
|
---|
[cee0b57] | 495 | bond *Binder = NULL;
|
---|
| 496 |
|
---|
[e138de] | 497 | Log() << Verbose(0) << "Begin of DepthFirstSearchAnalysis" << endl;
|
---|
| 498 | DepthFirstSearchAnalysis_Init(DFS, this);
|
---|
[cee0b57] | 499 |
|
---|
[7218f8] | 500 | DFS.Root = start->next;
|
---|
[9eefda] | 501 | while (DFS.Root != end) { // if there any atoms at all
|
---|
[7218f8] | 502 | // (1) mark all edges unused, empty stack, set atom->GraphNr = -1 for all
|
---|
[9eefda] | 503 | DFS.AtomStack->ClearStack();
|
---|
[cee0b57] | 504 |
|
---|
| 505 | // put into new subgraph molecule and add this to list of subgraphs
|
---|
| 506 | LeafWalker = new MoleculeLeafClass(LeafWalker);
|
---|
| 507 | LeafWalker->Leaf = new molecule(elemente);
|
---|
[9eefda] | 508 | LeafWalker->Leaf->AddCopyAtom(DFS.Root);
|
---|
[cee0b57] | 509 |
|
---|
[9eefda] | 510 | OldGraphNr = DFS.CurrentGraphNr;
|
---|
| 511 | Walker = DFS.Root;
|
---|
[cee0b57] | 512 | do { // (10)
|
---|
| 513 | do { // (2) set number and Lowpoint of Atom to i, increase i, push current atom
|
---|
[e138de] | 514 | DepthFirstSearchAnalysis_SetWalkersGraphNr(Walker, DFS);
|
---|
[174e0e] | 515 |
|
---|
[e138de] | 516 | DepthFirstSearchAnalysis_ProbeAlongUnusedBond(this, Walker, Binder, DFS);
|
---|
[174e0e] | 517 |
|
---|
[cee0b57] | 518 | if (Binder == NULL) {
|
---|
[e138de] | 519 | Log() << Verbose(2) << "No more Unused Bonds." << endl;
|
---|
[cee0b57] | 520 | break;
|
---|
| 521 | } else
|
---|
| 522 | Binder = NULL;
|
---|
[9eefda] | 523 | } while (1); // (2)
|
---|
[cee0b57] | 524 |
|
---|
| 525 | // if we came from backstepping, yet there were no more unused bonds, we end up here with no Ancestor, because Walker is Root! Then we are finished!
|
---|
[9eefda] | 526 | if ((Walker == DFS.Root) && (Binder == NULL))
|
---|
[cee0b57] | 527 | break;
|
---|
| 528 |
|
---|
[e138de] | 529 | DepthFirstSearchAnalysis_CheckForaNewComponent(this, Walker, DFS, LeafWalker);
|
---|
[174e0e] | 530 |
|
---|
[e138de] | 531 | DepthFirstSearchAnalysis_CleanRootStackDownTillWalker(this, Walker, Binder, DFS, LeafWalker);
|
---|
[174e0e] | 532 |
|
---|
[9eefda] | 533 | } while ((DFS.BackStepping) || (Binder != NULL)); // (10) halt only if Root has no unused edges
|
---|
[cee0b57] | 534 |
|
---|
| 535 | // From OldGraphNr to CurrentGraphNr ranges an disconnected subgraph
|
---|
[e138de] | 536 | Log() << Verbose(0) << "Disconnected subgraph ranges from " << OldGraphNr << " to " << DFS.CurrentGraphNr << "." << endl;
|
---|
| 537 | LeafWalker->Leaf->Output((ofstream *)&cout);
|
---|
| 538 | Log() << Verbose(0) << endl;
|
---|
[cee0b57] | 539 |
|
---|
| 540 | // step on to next root
|
---|
[9eefda] | 541 | while ((DFS.Root != end) && (DFS.Root->GraphNr != -1)) {
|
---|
[e138de] | 542 | //Log() << Verbose(1) << "Current next subgraph root candidate is " << Root->Name << "." << endl;
|
---|
[9eefda] | 543 | if (DFS.Root->GraphNr != -1) // if already discovered, step on
|
---|
| 544 | DFS.Root = DFS.Root->next;
|
---|
[cee0b57] | 545 | }
|
---|
| 546 | }
|
---|
| 547 | // set cyclic bond criterium on "same LP" basis
|
---|
[266237] | 548 | CyclicBondAnalysis();
|
---|
| 549 |
|
---|
[e138de] | 550 | OutputGraphInfoPerAtom();
|
---|
[266237] | 551 |
|
---|
[e138de] | 552 | OutputGraphInfoPerBond();
|
---|
[266237] | 553 |
|
---|
| 554 | // free all and exit
|
---|
[e138de] | 555 | DepthFirstSearchAnalysis_Finalize(DFS);
|
---|
| 556 | Log() << Verbose(0) << "End of DepthFirstSearchAnalysis" << endl;
|
---|
[266237] | 557 | return SubGraphs;
|
---|
[9eefda] | 558 | }
|
---|
| 559 | ;
|
---|
[266237] | 560 |
|
---|
| 561 | /** Scans through all bonds and set bond::Cyclic to true where atom::LowpointNr of both ends is equal: LP criterion.
|
---|
| 562 | */
|
---|
[fa649a] | 563 | void molecule::CyclicBondAnalysis() const
|
---|
[266237] | 564 | {
|
---|
| 565 | NoCyclicBonds = 0;
|
---|
| 566 | bond *Binder = first;
|
---|
[9eefda] | 567 | while (Binder->next != last) {
|
---|
[cee0b57] | 568 | Binder = Binder->next;
|
---|
| 569 | if (Binder->rightatom->LowpointNr == Binder->leftatom->LowpointNr) { // cyclic ??
|
---|
| 570 | Binder->Cyclic = true;
|
---|
| 571 | NoCyclicBonds++;
|
---|
| 572 | }
|
---|
| 573 | }
|
---|
[9eefda] | 574 | }
|
---|
| 575 | ;
|
---|
[cee0b57] | 576 |
|
---|
[266237] | 577 | /** Output graph information per atom.
|
---|
| 578 | * \param *out output stream
|
---|
| 579 | */
|
---|
[e138de] | 580 | void molecule::OutputGraphInfoPerAtom() const
|
---|
[266237] | 581 | {
|
---|
[e138de] | 582 | Log() << Verbose(1) << "Final graph info for each atom is:" << endl;
|
---|
| 583 | ActOnAllAtoms( &atom::OutputGraphInfo );
|
---|
[9eefda] | 584 | }
|
---|
| 585 | ;
|
---|
[cee0b57] | 586 |
|
---|
[266237] | 587 | /** Output graph information per bond.
|
---|
| 588 | * \param *out output stream
|
---|
| 589 | */
|
---|
[e138de] | 590 | void molecule::OutputGraphInfoPerBond() const
|
---|
[266237] | 591 | {
|
---|
[e138de] | 592 | Log() << Verbose(1) << "Final graph info for each bond is:" << endl;
|
---|
[266237] | 593 | bond *Binder = first;
|
---|
[9eefda] | 594 | while (Binder->next != last) {
|
---|
[cee0b57] | 595 | Binder = Binder->next;
|
---|
[e138de] | 596 | Log() << Verbose(2) << ((Binder->Type == TreeEdge) ? "TreeEdge " : "BackEdge ") << *Binder << ": <";
|
---|
| 597 | Log() << Verbose(0) << ((Binder->leftatom->SeparationVertex) ? "SP," : "") << "L" << Binder->leftatom->LowpointNr << " G" << Binder->leftatom->GraphNr << " Comp.";
|
---|
| 598 | Binder->leftatom->OutputComponentNumber();
|
---|
| 599 | Log() << Verbose(0) << " === ";
|
---|
| 600 | Log() << Verbose(0) << ((Binder->rightatom->SeparationVertex) ? "SP," : "") << "L" << Binder->rightatom->LowpointNr << " G" << Binder->rightatom->GraphNr << " Comp.";
|
---|
| 601 | Binder->rightatom->OutputComponentNumber();
|
---|
| 602 | Log() << Verbose(0) << ">." << endl;
|
---|
[cee0b57] | 603 | if (Binder->Cyclic) // cyclic ??
|
---|
[e138de] | 604 | Log() << Verbose(3) << "Lowpoint at each side are equal: CYCLIC!" << endl;
|
---|
[cee0b57] | 605 | }
|
---|
[9eefda] | 606 | }
|
---|
| 607 | ;
|
---|
| 608 |
|
---|
| 609 | /** Initialise each vertex as white with no predecessor, empty queue, color Root lightgray.
|
---|
| 610 | * \param *out output stream for debugging
|
---|
| 611 | * \param &BFS accounting structure
|
---|
| 612 | * \param AtomCount number of entries in the array to allocate
|
---|
| 613 | */
|
---|
[e138de] | 614 | void InitializeBFSAccounting(struct BFSAccounting &BFS, int AtomCount)
|
---|
[9eefda] | 615 | {
|
---|
| 616 | BFS.AtomCount = AtomCount;
|
---|
[7218f8] | 617 | BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");
|
---|
[9eefda] | 618 | BFS.ShortestPathList = Malloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");
|
---|
[7218f8] | 619 | BFS.ColorList = Calloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");
|
---|
[9eefda] | 620 | BFS.BFSStack = new StackClass<atom *> (AtomCount);
|
---|
| 621 |
|
---|
[7218f8] | 622 | for (int i = AtomCount; i--;)
|
---|
[9eefda] | 623 | BFS.ShortestPathList[i] = -1;
|
---|
[cee0b57] | 624 | };
|
---|
| 625 |
|
---|
[9eefda] | 626 | /** Free's accounting structure.
|
---|
| 627 | * \param *out output stream for debugging
|
---|
| 628 | * \param &BFS accounting structure
|
---|
| 629 | */
|
---|
[e138de] | 630 | void FinalizeBFSAccounting(struct BFSAccounting &BFS)
|
---|
[9eefda] | 631 | {
|
---|
| 632 | Free(&BFS.PredecessorList);
|
---|
| 633 | Free(&BFS.ShortestPathList);
|
---|
| 634 | Free(&BFS.ColorList);
|
---|
| 635 | delete (BFS.BFSStack);
|
---|
| 636 | BFS.AtomCount = 0;
|
---|
| 637 | };
|
---|
| 638 |
|
---|
| 639 | /** Clean the accounting structure.
|
---|
| 640 | * \param *out output stream for debugging
|
---|
| 641 | * \param &BFS accounting structure
|
---|
[ef9aae] | 642 | */
|
---|
[e138de] | 643 | void CleanBFSAccounting(struct BFSAccounting &BFS)
|
---|
[ef9aae] | 644 | {
|
---|
[9eefda] | 645 | atom *Walker = NULL;
|
---|
| 646 | while (!BFS.TouchedStack->IsEmpty()) {
|
---|
| 647 | Walker = BFS.TouchedStack->PopFirst();
|
---|
| 648 | BFS.PredecessorList[Walker->nr] = NULL;
|
---|
| 649 | BFS.ShortestPathList[Walker->nr] = -1;
|
---|
| 650 | BFS.ColorList[Walker->nr] = white;
|
---|
[ef9aae] | 651 | }
|
---|
| 652 | };
|
---|
| 653 |
|
---|
[9eefda] | 654 | /** Resets shortest path list and BFSStack.
|
---|
| 655 | * \param *out output stream for debugging
|
---|
| 656 | * \param *&Walker current node, pushed onto BFSAccounting::BFSStack and BFSAccounting::TouchedStack
|
---|
| 657 | * \param &BFS accounting structure
|
---|
| 658 | */
|
---|
[e138de] | 659 | void ResetBFSAccounting(atom *&Walker, struct BFSAccounting &BFS)
|
---|
[ef9aae] | 660 | {
|
---|
[9eefda] | 661 | BFS.ShortestPathList[Walker->nr] = 0;
|
---|
| 662 | BFS.BFSStack->ClearStack(); // start with empty BFS stack
|
---|
| 663 | BFS.BFSStack->Push(Walker);
|
---|
| 664 | BFS.TouchedStack->Push(Walker);
|
---|
[ef9aae] | 665 | };
|
---|
| 666 |
|
---|
[9eefda] | 667 | /** Performs a BFS from \a *Root, trying to find the same node and hence a cycle.
|
---|
| 668 | * \param *out output stream for debugging
|
---|
| 669 | * \param *&BackEdge the edge from root that we don't want to move along
|
---|
| 670 | * \param &BFS accounting structure
|
---|
| 671 | */
|
---|
[e138de] | 672 | void CyclicStructureAnalysis_CyclicBFSFromRootToRoot(bond *&BackEdge, struct BFSAccounting &BFS)
|
---|
[ef9aae] | 673 | {
|
---|
| 674 | atom *Walker = NULL;
|
---|
| 675 | atom *OtherAtom = NULL;
|
---|
[9eefda] | 676 | do { // look for Root
|
---|
| 677 | Walker = BFS.BFSStack->PopFirst();
|
---|
[e138de] | 678 | Log() << Verbose(2) << "Current Walker is " << *Walker << ", we look for SP to Root " << *BFS.Root << "." << endl;
|
---|
[ef9aae] | 679 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 680 | if ((*Runner) != BackEdge) { // only walk along DFS spanning tree (otherwise we always find SP of one being backedge Binder)
|
---|
| 681 | OtherAtom = (*Runner)->GetOtherAtom(Walker);
|
---|
[9eefda] | 682 | #ifdef ADDHYDROGEN
|
---|
[ef9aae] | 683 | if (OtherAtom->type->Z != 1) {
|
---|
[9eefda] | 684 | #endif
|
---|
[e138de] | 685 | Log() << Verbose(2) << "Current OtherAtom is: " << OtherAtom->Name << " for bond " << *(*Runner) << "." << endl;
|
---|
[9eefda] | 686 | if (BFS.ColorList[OtherAtom->nr] == white) {
|
---|
| 687 | BFS.TouchedStack->Push(OtherAtom);
|
---|
| 688 | BFS.ColorList[OtherAtom->nr] = lightgray;
|
---|
| 689 | BFS.PredecessorList[OtherAtom->nr] = Walker; // Walker is the predecessor
|
---|
| 690 | BFS.ShortestPathList[OtherAtom->nr] = BFS.ShortestPathList[Walker->nr] + 1;
|
---|
[e138de] | 691 | Log() << Verbose(2) << "Coloring OtherAtom " << OtherAtom->Name << " lightgray, its predecessor is " << Walker->Name << " and its Shortest Path is " << BFS.ShortestPathList[OtherAtom->nr] << " egde(s) long." << endl;
|
---|
[9eefda] | 692 | //if (BFS.ShortestPathList[OtherAtom->nr] < MinimumRingSize[Walker->GetTrueFather()->nr]) { // Check for maximum distance
|
---|
[e138de] | 693 | Log() << Verbose(3) << "Putting OtherAtom into queue." << endl;
|
---|
[9eefda] | 694 | BFS.BFSStack->Push(OtherAtom);
|
---|
| 695 | //}
|
---|
[ef9aae] | 696 | } else {
|
---|
[e138de] | 697 | Log() << Verbose(3) << "Not Adding, has already been visited." << endl;
|
---|
[ef9aae] | 698 | }
|
---|
[9eefda] | 699 | if (OtherAtom == BFS.Root)
|
---|
| 700 | break;
|
---|
| 701 | #ifdef ADDHYDROGEN
|
---|
| 702 | } else {
|
---|
[e138de] | 703 | Log() << Verbose(2) << "Skipping hydrogen atom " << *OtherAtom << "." << endl;
|
---|
[9eefda] | 704 | BFS.ColorList[OtherAtom->nr] = black;
|
---|
| 705 | }
|
---|
| 706 | #endif
|
---|
[ef9aae] | 707 | } else {
|
---|
[e138de] | 708 | Log() << Verbose(2) << "Bond " << *(*Runner) << " not Visiting, is the back edge." << endl;
|
---|
[ef9aae] | 709 | }
|
---|
| 710 | }
|
---|
[9eefda] | 711 | BFS.ColorList[Walker->nr] = black;
|
---|
[e138de] | 712 | Log() << Verbose(1) << "Coloring Walker " << Walker->Name << " black." << endl;
|
---|
[9eefda] | 713 | if (OtherAtom == BFS.Root) { // if we have found the root, check whether this cycle wasn't already found beforehand
|
---|
[ef9aae] | 714 | // step through predecessor list
|
---|
| 715 | while (OtherAtom != BackEdge->rightatom) {
|
---|
[9eefda] | 716 | if (!OtherAtom->GetTrueFather()->IsCyclic) // if one bond in the loop is not marked as cyclic, we haven't found this cycle yet
|
---|
[ef9aae] | 717 | break;
|
---|
| 718 | else
|
---|
[9eefda] | 719 | OtherAtom = BFS.PredecessorList[OtherAtom->nr];
|
---|
[ef9aae] | 720 | }
|
---|
| 721 | if (OtherAtom == BackEdge->rightatom) { // if each atom in found cycle is cyclic, loop's been found before already
|
---|
[e138de] | 722 | Log() << Verbose(3) << "This cycle was already found before, skipping and removing seeker from search." << endl;
|
---|
[ef9aae] | 723 | do {
|
---|
[9eefda] | 724 | OtherAtom = BFS.TouchedStack->PopLast();
|
---|
| 725 | if (BFS.PredecessorList[OtherAtom->nr] == Walker) {
|
---|
[e138de] | 726 | Log() << Verbose(4) << "Removing " << *OtherAtom << " from lists and stacks." << endl;
|
---|
[9eefda] | 727 | BFS.PredecessorList[OtherAtom->nr] = NULL;
|
---|
| 728 | BFS.ShortestPathList[OtherAtom->nr] = -1;
|
---|
| 729 | BFS.ColorList[OtherAtom->nr] = white;
|
---|
| 730 | BFS.BFSStack->RemoveItem(OtherAtom);
|
---|
[ef9aae] | 731 | }
|
---|
[9eefda] | 732 | } while ((!BFS.TouchedStack->IsEmpty()) && (BFS.PredecessorList[OtherAtom->nr] == NULL));
|
---|
| 733 | BFS.TouchedStack->Push(OtherAtom); // last was wrongly popped
|
---|
[ef9aae] | 734 | OtherAtom = BackEdge->rightatom; // set to not Root
|
---|
| 735 | } else
|
---|
[9eefda] | 736 | OtherAtom = BFS.Root;
|
---|
[ef9aae] | 737 | }
|
---|
[9eefda] | 738 | } while ((!BFS.BFSStack->IsEmpty()) && (OtherAtom != BFS.Root) && (OtherAtom != NULL)); // || (ShortestPathList[OtherAtom->nr] < MinimumRingSize[Walker->GetTrueFather()->nr])));
|
---|
[ef9aae] | 739 | };
|
---|
| 740 |
|
---|
[9eefda] | 741 | /** Climb back the BFSAccounting::PredecessorList and find cycle members.
|
---|
| 742 | * \param *out output stream for debugging
|
---|
| 743 | * \param *&OtherAtom
|
---|
| 744 | * \param *&BackEdge denotes the edge we did not want to travel along when doing CyclicBFSFromRootToRoot()
|
---|
| 745 | * \param &BFS accounting structure
|
---|
| 746 | * \param *&MinimumRingSize minimum distance from this node possible without encountering oneself, set on return for each atom
|
---|
| 747 | * \param &MinRingSize global minimum distance from one node without encountering oneself, set on return
|
---|
| 748 | */
|
---|
[e138de] | 749 | void CyclicStructureAnalysis_RetrieveCycleMembers(atom *&OtherAtom, bond *&BackEdge, struct BFSAccounting &BFS, int *&MinimumRingSize, int &MinRingSize)
|
---|
[ef9aae] | 750 | {
|
---|
| 751 | atom *Walker = NULL;
|
---|
| 752 | int NumCycles = 0;
|
---|
| 753 | int RingSize = -1;
|
---|
| 754 |
|
---|
[9eefda] | 755 | if (OtherAtom == BFS.Root) {
|
---|
[ef9aae] | 756 | // now climb back the predecessor list and thus find the cycle members
|
---|
| 757 | NumCycles++;
|
---|
| 758 | RingSize = 1;
|
---|
[9eefda] | 759 | BFS.Root->GetTrueFather()->IsCyclic = true;
|
---|
[e138de] | 760 | Log() << Verbose(1) << "Found ring contains: ";
|
---|
[9eefda] | 761 | Walker = BFS.Root;
|
---|
[ef9aae] | 762 | while (Walker != BackEdge->rightatom) {
|
---|
[e138de] | 763 | Log() << Verbose(0) << Walker->Name << " <-> ";
|
---|
[9eefda] | 764 | Walker = BFS.PredecessorList[Walker->nr];
|
---|
[ef9aae] | 765 | Walker->GetTrueFather()->IsCyclic = true;
|
---|
| 766 | RingSize++;
|
---|
| 767 | }
|
---|
[e138de] | 768 | Log() << Verbose(0) << Walker->Name << " with a length of " << RingSize << "." << endl << endl;
|
---|
[ef9aae] | 769 | // walk through all and set MinimumRingSize
|
---|
[9eefda] | 770 | Walker = BFS.Root;
|
---|
[ef9aae] | 771 | MinimumRingSize[Walker->GetTrueFather()->nr] = RingSize;
|
---|
| 772 | while (Walker != BackEdge->rightatom) {
|
---|
[9eefda] | 773 | Walker = BFS.PredecessorList[Walker->nr];
|
---|
[ef9aae] | 774 | if (RingSize < MinimumRingSize[Walker->GetTrueFather()->nr])
|
---|
| 775 | MinimumRingSize[Walker->GetTrueFather()->nr] = RingSize;
|
---|
| 776 | }
|
---|
| 777 | if ((RingSize < MinRingSize) || (MinRingSize == -1))
|
---|
| 778 | MinRingSize = RingSize;
|
---|
| 779 | } else {
|
---|
[e138de] | 780 | Log() << Verbose(1) << "No ring containing " << *BFS.Root << " with length equal to or smaller than " << MinimumRingSize[Walker->GetTrueFather()->nr] << " found." << endl;
|
---|
[ef9aae] | 781 | }
|
---|
| 782 | };
|
---|
| 783 |
|
---|
[9eefda] | 784 | /** From a given node performs a BFS to touch the next cycle, for whose nodes \a *&MinimumRingSize is set and set it accordingly.
|
---|
| 785 | * \param *out output stream for debugging
|
---|
| 786 | * \param *&Root node to look for closest cycle from, i.e. \a *&MinimumRingSize is set for this node
|
---|
| 787 | * \param *&MinimumRingSize minimum distance from this node possible without encountering oneself, set on return for each atom
|
---|
| 788 | * \param AtomCount number of nodes in graph
|
---|
| 789 | */
|
---|
[e138de] | 790 | void CyclicStructureAnalysis_BFSToNextCycle(atom *&Root, atom *&Walker, int *&MinimumRingSize, int AtomCount)
|
---|
[ef9aae] | 791 | {
|
---|
[9eefda] | 792 | struct BFSAccounting BFS;
|
---|
[ef9aae] | 793 | atom *OtherAtom = Walker;
|
---|
| 794 |
|
---|
[e138de] | 795 | InitializeBFSAccounting(BFS, AtomCount);
|
---|
[ef9aae] | 796 |
|
---|
[e138de] | 797 | ResetBFSAccounting(Walker, BFS);
|
---|
[9eefda] | 798 | while (OtherAtom != NULL) { // look for Root
|
---|
| 799 | Walker = BFS.BFSStack->PopFirst();
|
---|
[e138de] | 800 | //Log() << Verbose(2) << "Current Walker is " << *Walker << ", we look for SP to Root " << *Root << "." << endl;
|
---|
[ef9aae] | 801 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
[9eefda] | 802 | // "removed (*Runner) != BackEdge) || " from next if, is u
|
---|
| 803 | if ((Walker->ListOfBonds.size() == 1)) { // only walk along DFS spanning tree (otherwise we always find SP of 1 being backedge Binder), but terminal hydrogens may be connected via backedge, hence extra check
|
---|
[ef9aae] | 804 | OtherAtom = (*Runner)->GetOtherAtom(Walker);
|
---|
[e138de] | 805 | //Log() << Verbose(2) << "Current OtherAtom is: " << OtherAtom->Name << " for bond " << *Binder << "." << endl;
|
---|
[9eefda] | 806 | if (BFS.ColorList[OtherAtom->nr] == white) {
|
---|
| 807 | BFS.TouchedStack->Push(OtherAtom);
|
---|
| 808 | BFS.ColorList[OtherAtom->nr] = lightgray;
|
---|
| 809 | BFS.PredecessorList[OtherAtom->nr] = Walker; // Walker is the predecessor
|
---|
| 810 | BFS.ShortestPathList[OtherAtom->nr] = BFS.ShortestPathList[Walker->nr] + 1;
|
---|
[e138de] | 811 | //Log() << Verbose(2) << "Coloring OtherAtom " << OtherAtom->Name << " lightgray, its predecessor is " << Walker->Name << " and its Shortest Path is " << ShortestPathList[OtherAtom->nr] << " egde(s) long." << endl;
|
---|
[ef9aae] | 812 | if (OtherAtom->GetTrueFather()->IsCyclic) { // if the other atom is connected to a ring
|
---|
[9eefda] | 813 | MinimumRingSize[Root->GetTrueFather()->nr] = BFS.ShortestPathList[OtherAtom->nr] + MinimumRingSize[OtherAtom->GetTrueFather()->nr];
|
---|
[ef9aae] | 814 | OtherAtom = NULL; //break;
|
---|
| 815 | break;
|
---|
| 816 | } else
|
---|
[9eefda] | 817 | BFS.BFSStack->Push(OtherAtom);
|
---|
[ef9aae] | 818 | } else {
|
---|
[e138de] | 819 | //Log() << Verbose(3) << "Not Adding, has already been visited." << endl;
|
---|
[ef9aae] | 820 | }
|
---|
| 821 | } else {
|
---|
[e138de] | 822 | //Log() << Verbose(3) << "Not Visiting, is a back edge." << endl;
|
---|
[ef9aae] | 823 | }
|
---|
| 824 | }
|
---|
[9eefda] | 825 | BFS.ColorList[Walker->nr] = black;
|
---|
[e138de] | 826 | //Log() << Verbose(1) << "Coloring Walker " << Walker->Name << " black." << endl;
|
---|
[ef9aae] | 827 | }
|
---|
| 828 | //CleanAccountingLists(TouchedStack, PredecessorList, ShortestPathList, ColorList);
|
---|
| 829 |
|
---|
[e138de] | 830 | FinalizeBFSAccounting(BFS);
|
---|
[9eefda] | 831 | }
|
---|
| 832 | ;
|
---|
[ef9aae] | 833 |
|
---|
[9eefda] | 834 | /** All nodes that are not in cycles get assigned a \a *&MinimumRingSizeby BFS to next cycle.
|
---|
| 835 | * \param *out output stream for debugging
|
---|
| 836 | * \param *&MinimumRingSize array with minimum distance without encountering onself for each atom
|
---|
| 837 | * \param &MinRingSize global minium distance
|
---|
| 838 | * \param &NumCyles number of cycles in graph
|
---|
| 839 | * \param *mol molecule with atoms
|
---|
| 840 | */
|
---|
[e138de] | 841 | void CyclicStructureAnalysis_AssignRingSizetoNonCycleMembers(int *&MinimumRingSize, int &MinRingSize, int &NumCycles, const molecule * const mol)
|
---|
[ef9aae] | 842 | {
|
---|
[9eefda] | 843 | atom *Root = NULL;
|
---|
[ef9aae] | 844 | atom *Walker = NULL;
|
---|
| 845 | if (MinRingSize != -1) { // if rings are present
|
---|
| 846 | // go over all atoms
|
---|
| 847 | Root = mol->start;
|
---|
[9eefda] | 848 | while (Root->next != mol->end) {
|
---|
[ef9aae] | 849 | Root = Root->next;
|
---|
| 850 |
|
---|
| 851 | if (MinimumRingSize[Root->GetTrueFather()->nr] == mol->AtomCount) { // check whether MinimumRingSize is set, if not BFS to next where it is
|
---|
| 852 | Walker = Root;
|
---|
| 853 |
|
---|
[e138de] | 854 | //Log() << Verbose(1) << "---------------------------------------------------------------------------------------------------------" << endl;
|
---|
| 855 | CyclicStructureAnalysis_BFSToNextCycle(Root, Walker, MinimumRingSize, mol->AtomCount);
|
---|
[ef9aae] | 856 |
|
---|
| 857 | }
|
---|
[e138de] | 858 | Log() << Verbose(1) << "Minimum ring size of " << *Root << " is " << MinimumRingSize[Root->GetTrueFather()->nr] << "." << endl;
|
---|
[ef9aae] | 859 | }
|
---|
[e138de] | 860 | Log() << Verbose(1) << "Minimum ring size is " << MinRingSize << ", over " << NumCycles << " cycles total." << endl;
|
---|
[ef9aae] | 861 | } else
|
---|
[e138de] | 862 | Log() << Verbose(1) << "No rings were detected in the molecular structure." << endl;
|
---|
[9eefda] | 863 | }
|
---|
| 864 | ;
|
---|
[ef9aae] | 865 |
|
---|
[cee0b57] | 866 | /** Analyses the cycles found and returns minimum of all cycle lengths.
|
---|
| 867 | * We begin with a list of Back edges found during DepthFirstSearchAnalysis(). We go through this list - one end is the Root,
|
---|
| 868 | * the other our initial Walker - and do a Breadth First Search for the Root. We mark down each Predecessor and as soon as
|
---|
| 869 | * we have found the Root via BFS, we may climb back the closed cycle via the Predecessors. Thereby we mark atoms and bonds
|
---|
| 870 | * as cyclic and print out the cycles.
|
---|
| 871 | * \param *out output stream for debugging
|
---|
| 872 | * \param *BackEdgeStack stack with all back edges found during DFS scan. Beware: This stack contains the bonds from the total molecule, not from the subgraph!
|
---|
| 873 | * \param *&MinimumRingSize contains smallest ring size in molecular structure on return or -1 if no rings were found, if set is maximum search distance
|
---|
| 874 | * \todo BFS from the not-same-LP to find back to starting point of tributary cycle over more than one bond
|
---|
| 875 | */
|
---|
[e138de] | 876 | void molecule::CyclicStructureAnalysis(class StackClass<bond *> * BackEdgeStack, int *&MinimumRingSize) const
|
---|
[cee0b57] | 877 | {
|
---|
[9eefda] | 878 | struct BFSAccounting BFS;
|
---|
[ef9aae] | 879 | atom *Walker = NULL;
|
---|
| 880 | atom *OtherAtom = NULL;
|
---|
| 881 | bond *BackEdge = NULL;
|
---|
| 882 | int NumCycles = 0;
|
---|
| 883 | int MinRingSize = -1;
|
---|
[cee0b57] | 884 |
|
---|
[e138de] | 885 | InitializeBFSAccounting(BFS, AtomCount);
|
---|
[cee0b57] | 886 |
|
---|
[e138de] | 887 | //Log() << Verbose(1) << "Back edge list - ";
|
---|
[99593f] | 888 | //BackEdgeStack->Output(out);
|
---|
[cee0b57] | 889 |
|
---|
[e138de] | 890 | Log() << Verbose(1) << "Analysing cycles ... " << endl;
|
---|
[cee0b57] | 891 | NumCycles = 0;
|
---|
| 892 | while (!BackEdgeStack->IsEmpty()) {
|
---|
| 893 | BackEdge = BackEdgeStack->PopFirst();
|
---|
| 894 | // this is the target
|
---|
[9eefda] | 895 | BFS.Root = BackEdge->leftatom;
|
---|
[cee0b57] | 896 | // this is the source point
|
---|
| 897 | Walker = BackEdge->rightatom;
|
---|
| 898 |
|
---|
[e138de] | 899 | ResetBFSAccounting(Walker, BFS);
|
---|
[cee0b57] | 900 |
|
---|
[e138de] | 901 | Log() << Verbose(1) << "---------------------------------------------------------------------------------------------------------" << endl;
|
---|
[ef9aae] | 902 | OtherAtom = NULL;
|
---|
[e138de] | 903 | CyclicStructureAnalysis_CyclicBFSFromRootToRoot(BackEdge, BFS);
|
---|
[cee0b57] | 904 |
|
---|
[e138de] | 905 | CyclicStructureAnalysis_RetrieveCycleMembers(OtherAtom, BackEdge, BFS, MinimumRingSize, MinRingSize);
|
---|
[cee0b57] | 906 |
|
---|
[e138de] | 907 | CleanBFSAccounting(BFS);
|
---|
[ef9aae] | 908 | }
|
---|
[e138de] | 909 | FinalizeBFSAccounting(BFS);
|
---|
[ef9aae] | 910 |
|
---|
[e138de] | 911 | CyclicStructureAnalysis_AssignRingSizetoNonCycleMembers(MinimumRingSize, MinRingSize, NumCycles, this);
|
---|
[fa649a] | 912 | };
|
---|
[cee0b57] | 913 |
|
---|
| 914 | /** Sets the next component number.
|
---|
| 915 | * This is O(N) as the number of bonds per atom is bound.
|
---|
| 916 | * \param *vertex atom whose next atom::*ComponentNr is to be set
|
---|
| 917 | * \param nr number to use
|
---|
| 918 | */
|
---|
[fa649a] | 919 | void molecule::SetNextComponentNumber(atom *vertex, int nr) const
|
---|
[cee0b57] | 920 | {
|
---|
[9eefda] | 921 | size_t i = 0;
|
---|
[cee0b57] | 922 | if (vertex != NULL) {
|
---|
[9eefda] | 923 | for (; i < vertex->ListOfBonds.size(); i++) {
|
---|
| 924 | if (vertex->ComponentNr[i] == -1) { // check if not yet used
|
---|
[cee0b57] | 925 | vertex->ComponentNr[i] = nr;
|
---|
| 926 | break;
|
---|
[9eefda] | 927 | } else if (vertex->ComponentNr[i] == nr) // if number is already present, don't add another time
|
---|
| 928 | break; // breaking here will not cause error!
|
---|
[cee0b57] | 929 | }
|
---|
[e359a8] | 930 | if (i == vertex->ListOfBonds.size()) {
|
---|
[e138de] | 931 | eLog() << Verbose(0) << "Error: All Component entries are already occupied!" << endl;
|
---|
[e359a8] | 932 | performCriticalExit();
|
---|
| 933 | }
|
---|
| 934 | } else {
|
---|
[e138de] | 935 | eLog() << Verbose(0) << "Error: Given vertex is NULL!" << endl;
|
---|
[e359a8] | 936 | performCriticalExit();
|
---|
| 937 | }
|
---|
[9eefda] | 938 | }
|
---|
| 939 | ;
|
---|
[cee0b57] | 940 |
|
---|
| 941 | /** Returns next unused bond for this atom \a *vertex or NULL of none exists.
|
---|
| 942 | * \param *vertex atom to regard
|
---|
| 943 | * \return bond class or NULL
|
---|
| 944 | */
|
---|
[fa649a] | 945 | bond * molecule::FindNextUnused(atom *vertex) const
|
---|
[cee0b57] | 946 | {
|
---|
[266237] | 947 | for (BondList::const_iterator Runner = vertex->ListOfBonds.begin(); Runner != vertex->ListOfBonds.end(); (++Runner))
|
---|
| 948 | if ((*Runner)->IsUsed() == white)
|
---|
[9eefda] | 949 | return ((*Runner));
|
---|
[cee0b57] | 950 | return NULL;
|
---|
[9eefda] | 951 | }
|
---|
| 952 | ;
|
---|
[cee0b57] | 953 |
|
---|
| 954 | /** Resets bond::Used flag of all bonds in this molecule.
|
---|
| 955 | * \return true - success, false - -failure
|
---|
| 956 | */
|
---|
[fa649a] | 957 | void molecule::ResetAllBondsToUnused() const
|
---|
[cee0b57] | 958 | {
|
---|
| 959 | bond *Binder = first;
|
---|
| 960 | while (Binder->next != last) {
|
---|
| 961 | Binder = Binder->next;
|
---|
| 962 | Binder->ResetUsed();
|
---|
| 963 | }
|
---|
[9eefda] | 964 | }
|
---|
| 965 | ;
|
---|
[cee0b57] | 966 |
|
---|
| 967 | /** Output a list of flags, stating whether the bond was visited or not.
|
---|
| 968 | * \param *out output stream for debugging
|
---|
| 969 | * \param *list
|
---|
| 970 | */
|
---|
[e138de] | 971 | void OutputAlreadyVisited(int *list)
|
---|
[cee0b57] | 972 | {
|
---|
[e138de] | 973 | Log() << Verbose(4) << "Already Visited Bonds:\t";
|
---|
[9eefda] | 974 | for (int i = 1; i <= list[0]; i++)
|
---|
[e138de] | 975 | Log() << Verbose(0) << list[i] << " ";
|
---|
| 976 | Log() << Verbose(0) << endl;
|
---|
[9eefda] | 977 | }
|
---|
| 978 | ;
|
---|
[cee0b57] | 979 |
|
---|
| 980 | /** Storing the bond structure of a molecule to file.
|
---|
| 981 | * Simply stores Atom::nr and then the Atom::nr of all bond partners per line.
|
---|
| 982 | * \param *out output stream for debugging
|
---|
| 983 | * \param *path path to file
|
---|
| 984 | * \return true - file written successfully, false - writing failed
|
---|
| 985 | */
|
---|
[e138de] | 986 | bool molecule::StoreAdjacencyToFile(char *path)
|
---|
[cee0b57] | 987 | {
|
---|
| 988 | ofstream AdjacencyFile;
|
---|
| 989 | stringstream line;
|
---|
| 990 | bool status = true;
|
---|
| 991 |
|
---|
| 992 | line << path << "/" << FRAGMENTPREFIX << ADJACENCYFILE;
|
---|
| 993 | AdjacencyFile.open(line.str().c_str(), ios::out);
|
---|
[e138de] | 994 | Log() << Verbose(1) << "Saving adjacency list ... ";
|
---|
[cee0b57] | 995 | if (AdjacencyFile != NULL) {
|
---|
[1f1b23] | 996 | AdjacencyFile << "m\tn" << endl;
|
---|
[9eefda] | 997 | ActOnAllAtoms(&atom::OutputAdjacency, &AdjacencyFile);
|
---|
[cee0b57] | 998 | AdjacencyFile.close();
|
---|
[e138de] | 999 | Log() << Verbose(1) << "done." << endl;
|
---|
[cee0b57] | 1000 | } else {
|
---|
[e138de] | 1001 | Log() << Verbose(1) << "failed to open file " << line.str() << "." << endl;
|
---|
[cee0b57] | 1002 | status = false;
|
---|
| 1003 | }
|
---|
| 1004 |
|
---|
| 1005 | return status;
|
---|
[9eefda] | 1006 | }
|
---|
| 1007 | ;
|
---|
[cee0b57] | 1008 |
|
---|
[1f1b23] | 1009 | /** Storing the bond structure of a molecule to file.
|
---|
| 1010 | * Simply stores Atom::nr and then the Atom::nr of all bond partners, one per line.
|
---|
| 1011 | * \param *out output stream for debugging
|
---|
| 1012 | * \param *path path to file
|
---|
| 1013 | * \return true - file written successfully, false - writing failed
|
---|
| 1014 | */
|
---|
| 1015 | bool molecule::StoreBondsToFile(char *path)
|
---|
| 1016 | {
|
---|
| 1017 | ofstream BondFile;
|
---|
| 1018 | stringstream line;
|
---|
| 1019 | bool status = true;
|
---|
| 1020 |
|
---|
| 1021 | line << path << "/" << FRAGMENTPREFIX << ADJACENCYFILE;
|
---|
| 1022 | BondFile.open(line.str().c_str(), ios::out);
|
---|
| 1023 | Log() << Verbose(1) << "Saving adjacency list ... ";
|
---|
| 1024 | if (BondFile != NULL) {
|
---|
| 1025 | BondFile << "m\tn" << endl;
|
---|
| 1026 | ActOnAllAtoms(&atom::OutputBonds, &BondFile);
|
---|
| 1027 | BondFile.close();
|
---|
| 1028 | Log() << Verbose(1) << "done." << endl;
|
---|
| 1029 | } else {
|
---|
| 1030 | Log() << Verbose(1) << "failed to open file " << line.str() << "." << endl;
|
---|
| 1031 | status = false;
|
---|
| 1032 | }
|
---|
| 1033 |
|
---|
| 1034 | return status;
|
---|
| 1035 | }
|
---|
| 1036 | ;
|
---|
| 1037 |
|
---|
[e138de] | 1038 | bool CheckAdjacencyFileAgainstMolecule_Init(char *path, ifstream &File, int *&CurrentBonds)
|
---|
[ba4170] | 1039 | {
|
---|
| 1040 | stringstream filename;
|
---|
| 1041 | filename << path << "/" << FRAGMENTPREFIX << ADJACENCYFILE;
|
---|
| 1042 | File.open(filename.str().c_str(), ios::out);
|
---|
[e138de] | 1043 | Log() << Verbose(1) << "Looking at bond structure stored in adjacency file and comparing to present one ... ";
|
---|
[ba4170] | 1044 | if (File == NULL)
|
---|
| 1045 | return false;
|
---|
| 1046 |
|
---|
| 1047 | // allocate storage structure
|
---|
[7218f8] | 1048 | CurrentBonds = Calloc<int> (8, "molecule::CheckAdjacencyFileAgainstMolecule - CurrentBonds"); // contains parsed bonds of current atom
|
---|
[ba4170] | 1049 | return true;
|
---|
[9eefda] | 1050 | }
|
---|
| 1051 | ;
|
---|
[ba4170] | 1052 |
|
---|
[e138de] | 1053 | void CheckAdjacencyFileAgainstMolecule_Finalize(ifstream &File, int *&CurrentBonds)
|
---|
[ba4170] | 1054 | {
|
---|
| 1055 | File.close();
|
---|
| 1056 | File.clear();
|
---|
| 1057 | Free(&CurrentBonds);
|
---|
[9eefda] | 1058 | }
|
---|
| 1059 | ;
|
---|
[ba4170] | 1060 |
|
---|
[e138de] | 1061 | void CheckAdjacencyFileAgainstMolecule_CompareBonds(bool &status, int &NonMatchNumber, atom *&Walker, size_t &CurrentBondsOfAtom, int AtomNr, int *&CurrentBonds, atom **ListOfAtoms)
|
---|
[ba4170] | 1062 | {
|
---|
| 1063 | size_t j = 0;
|
---|
| 1064 | int id = -1;
|
---|
| 1065 |
|
---|
[e138de] | 1066 | //Log() << Verbose(2) << "Walker is " << *Walker << ", bond partners: ";
|
---|
[ba4170] | 1067 | if (CurrentBondsOfAtom == Walker->ListOfBonds.size()) {
|
---|
| 1068 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 1069 | id = (*Runner)->GetOtherAtom(Walker)->nr;
|
---|
| 1070 | j = 0;
|
---|
[9eefda] | 1071 | for (; (j < CurrentBondsOfAtom) && (CurrentBonds[j++] != id);)
|
---|
[ba4170] | 1072 | ; // check against all parsed bonds
|
---|
[9eefda] | 1073 | if (CurrentBonds[j - 1] != id) { // no match ? Then mark in ListOfAtoms
|
---|
[ba4170] | 1074 | ListOfAtoms[AtomNr] = NULL;
|
---|
| 1075 | NonMatchNumber++;
|
---|
| 1076 | status = false;
|
---|
[e138de] | 1077 | //Log() << Verbose(0) << "[" << id << "]\t";
|
---|
[ba4170] | 1078 | } else {
|
---|
[e138de] | 1079 | //Log() << Verbose(0) << id << "\t";
|
---|
[ba4170] | 1080 | }
|
---|
| 1081 | }
|
---|
[e138de] | 1082 | //Log() << Verbose(0) << endl;
|
---|
[ba4170] | 1083 | } else {
|
---|
[e138de] | 1084 | Log() << Verbose(0) << "Number of bonds for Atom " << *Walker << " does not match, parsed " << CurrentBondsOfAtom << " against " << Walker->ListOfBonds.size() << "." << endl;
|
---|
[ba4170] | 1085 | status = false;
|
---|
| 1086 | }
|
---|
[9eefda] | 1087 | }
|
---|
| 1088 | ;
|
---|
[ba4170] | 1089 |
|
---|
[cee0b57] | 1090 | /** Checks contents of adjacency file against bond structure in structure molecule.
|
---|
| 1091 | * \param *out output stream for debugging
|
---|
| 1092 | * \param *path path to file
|
---|
| 1093 | * \param **ListOfAtoms allocated (molecule::AtomCount) and filled lookup table for ids (Atom::nr) to *Atom
|
---|
| 1094 | * \return true - structure is equal, false - not equivalence
|
---|
| 1095 | */
|
---|
[e138de] | 1096 | bool molecule::CheckAdjacencyFileAgainstMolecule(char *path, atom **ListOfAtoms)
|
---|
[cee0b57] | 1097 | {
|
---|
| 1098 | ifstream File;
|
---|
| 1099 | bool status = true;
|
---|
[266237] | 1100 | atom *Walker = NULL;
|
---|
[ba4170] | 1101 | char *buffer = NULL;
|
---|
| 1102 | int *CurrentBonds = NULL;
|
---|
[9eefda] | 1103 | int NonMatchNumber = 0; // will number of atoms with differing bond structure
|
---|
[ba4170] | 1104 | size_t CurrentBondsOfAtom = -1;
|
---|
[cee0b57] | 1105 |
|
---|
[e138de] | 1106 | if (!CheckAdjacencyFileAgainstMolecule_Init(path, File, CurrentBonds)) {
|
---|
| 1107 | Log() << Verbose(1) << "Adjacency file not found." << endl;
|
---|
[ba4170] | 1108 | return true;
|
---|
| 1109 | }
|
---|
| 1110 |
|
---|
[9eefda] | 1111 | buffer = Malloc<char> (MAXSTRINGSIZE, "molecule::CheckAdjacencyFileAgainstMolecule: *buffer");
|
---|
[ba4170] | 1112 | // Parse the file line by line and count the bonds
|
---|
| 1113 | while (!File.eof()) {
|
---|
| 1114 | File.getline(buffer, MAXSTRINGSIZE);
|
---|
| 1115 | stringstream line;
|
---|
| 1116 | line.str(buffer);
|
---|
| 1117 | int AtomNr = -1;
|
---|
| 1118 | line >> AtomNr;
|
---|
| 1119 | CurrentBondsOfAtom = -1; // we count one too far due to line end
|
---|
| 1120 | // parse into structure
|
---|
| 1121 | if ((AtomNr >= 0) && (AtomNr < AtomCount)) {
|
---|
| 1122 | Walker = ListOfAtoms[AtomNr];
|
---|
| 1123 | while (!line.eof())
|
---|
[9eefda] | 1124 | line >> CurrentBonds[++CurrentBondsOfAtom];
|
---|
[ba4170] | 1125 | // compare against present bonds
|
---|
[e138de] | 1126 | CheckAdjacencyFileAgainstMolecule_CompareBonds(status, NonMatchNumber, Walker, CurrentBondsOfAtom, AtomNr, CurrentBonds, ListOfAtoms);
|
---|
[ba4170] | 1127 | }
|
---|
[cee0b57] | 1128 | }
|
---|
| 1129 | Free(&buffer);
|
---|
[e138de] | 1130 | CheckAdjacencyFileAgainstMolecule_Finalize(File, CurrentBonds);
|
---|
[cee0b57] | 1131 |
|
---|
[ba4170] | 1132 | if (status) { // if equal we parse the KeySetFile
|
---|
[e138de] | 1133 | Log() << Verbose(1) << "done: Equal." << endl;
|
---|
[ba4170] | 1134 | } else
|
---|
[e138de] | 1135 | Log() << Verbose(1) << "done: Not equal by " << NonMatchNumber << " atoms." << endl;
|
---|
[cee0b57] | 1136 | return status;
|
---|
[9eefda] | 1137 | }
|
---|
| 1138 | ;
|
---|
[cee0b57] | 1139 |
|
---|
| 1140 | /** Picks from a global stack with all back edges the ones in the fragment.
|
---|
| 1141 | * \param *out output stream for debugging
|
---|
| 1142 | * \param **ListOfLocalAtoms array of father atom::nr to local atom::nr (reverse of atom::father)
|
---|
| 1143 | * \param *ReferenceStack stack with all the back egdes
|
---|
| 1144 | * \param *LocalStack stack to be filled
|
---|
| 1145 | * \return true - everything ok, false - ReferenceStack was empty
|
---|
| 1146 | */
|
---|
[e138de] | 1147 | bool molecule::PickLocalBackEdges(atom **ListOfLocalAtoms, class StackClass<bond *> *&ReferenceStack, class StackClass<bond *> *&LocalStack) const
|
---|
[cee0b57] | 1148 | {
|
---|
| 1149 | bool status = true;
|
---|
| 1150 | if (ReferenceStack->IsEmpty()) {
|
---|
[482373] | 1151 | Log() << Verbose(1) << "ReferenceStack is empty!" << endl;
|
---|
[cee0b57] | 1152 | return false;
|
---|
| 1153 | }
|
---|
| 1154 | bond *Binder = ReferenceStack->PopFirst();
|
---|
[9eefda] | 1155 | bond *FirstBond = Binder; // mark the first bond, so that we don't loop through the stack indefinitely
|
---|
[cee0b57] | 1156 | atom *Walker = NULL, *OtherAtom = NULL;
|
---|
| 1157 | ReferenceStack->Push(Binder);
|
---|
| 1158 |
|
---|
[9eefda] | 1159 | do { // go through all bonds and push local ones
|
---|
| 1160 | Walker = ListOfLocalAtoms[Binder->leftatom->nr]; // get one atom in the reference molecule
|
---|
[cee0b57] | 1161 | if (Walker != NULL) // if this Walker exists in the subgraph ...
|
---|
[266237] | 1162 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 1163 | OtherAtom = (*Runner)->GetOtherAtom(Walker);
|
---|
| 1164 | if (OtherAtom == ListOfLocalAtoms[(*Runner)->rightatom->nr]) { // found the bond
|
---|
| 1165 | LocalStack->Push((*Runner));
|
---|
[e138de] | 1166 | Log() << Verbose(3) << "Found local edge " << *(*Runner) << "." << endl;
|
---|
[cee0b57] | 1167 | break;
|
---|
| 1168 | }
|
---|
| 1169 | }
|
---|
[9eefda] | 1170 | Binder = ReferenceStack->PopFirst(); // loop the stack for next item
|
---|
[e138de] | 1171 | Log() << Verbose(3) << "Current candidate edge " << Binder << "." << endl;
|
---|
[cee0b57] | 1172 | ReferenceStack->Push(Binder);
|
---|
| 1173 | } while (FirstBond != Binder);
|
---|
| 1174 |
|
---|
| 1175 | return status;
|
---|
[9eefda] | 1176 | }
|
---|
| 1177 | ;
|
---|
[ce7cc5] | 1178 |
|
---|
| 1179 | void BreadthFirstSearchAdd_Init(struct BFSAccounting &BFS, atom *&Root, int AtomCount, int BondOrder, atom **AddedAtomList = NULL)
|
---|
| 1180 | {
|
---|
| 1181 | BFS.AtomCount = AtomCount;
|
---|
| 1182 | BFS.BondOrder = BondOrder;
|
---|
[7218f8] | 1183 | BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");
|
---|
| 1184 | BFS.ShortestPathList = Calloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");
|
---|
[9eefda] | 1185 | BFS.ColorList = Malloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");
|
---|
| 1186 | BFS.BFSStack = new StackClass<atom *> (AtomCount);
|
---|
[ce7cc5] | 1187 |
|
---|
| 1188 | BFS.Root = Root;
|
---|
[9eefda] | 1189 | BFS.BFSStack->ClearStack();
|
---|
| 1190 | BFS.BFSStack->Push(Root);
|
---|
[ce7cc5] | 1191 |
|
---|
| 1192 | // initialise each vertex as white with no predecessor, empty queue, color Root lightgray
|
---|
[9eefda] | 1193 | for (int i = AtomCount; i--;) {
|
---|
[ce7cc5] | 1194 | BFS.ShortestPathList[i] = -1;
|
---|
| 1195 | if ((AddedAtomList != NULL) && (AddedAtomList[i] != NULL)) // mark already present atoms (i.e. Root and maybe others) as visited
|
---|
| 1196 | BFS.ColorList[i] = lightgray;
|
---|
| 1197 | else
|
---|
| 1198 | BFS.ColorList[i] = white;
|
---|
| 1199 | }
|
---|
[7218f8] | 1200 | //BFS.ShortestPathList[Root->nr] = 0; //is set due to Calloc()
|
---|
[9eefda] | 1201 | }
|
---|
| 1202 | ;
|
---|
[ce7cc5] | 1203 |
|
---|
| 1204 | void BreadthFirstSearchAdd_Free(struct BFSAccounting &BFS)
|
---|
| 1205 | {
|
---|
| 1206 | Free(&BFS.PredecessorList);
|
---|
| 1207 | Free(&BFS.ShortestPathList);
|
---|
| 1208 | Free(&BFS.ColorList);
|
---|
[9eefda] | 1209 | delete (BFS.BFSStack);
|
---|
[ce7cc5] | 1210 | BFS.AtomCount = 0;
|
---|
[9eefda] | 1211 | }
|
---|
| 1212 | ;
|
---|
[ce7cc5] | 1213 |
|
---|
[e138de] | 1214 | void BreadthFirstSearchAdd_UnvisitedNode(molecule *Mol, struct BFSAccounting &BFS, atom *&Walker, atom *&OtherAtom, bond *&Binder, bond *&Bond, atom **&AddedAtomList, bond **&AddedBondList, bool IsAngstroem)
|
---|
[ce7cc5] | 1215 | {
|
---|
| 1216 | if (Binder != Bond) // let other atom white if it's via Root bond. In case it's cyclic it has to be reached again (yet Root is from OtherAtom already black, thus no problem)
|
---|
| 1217 | BFS.ColorList[OtherAtom->nr] = lightgray;
|
---|
[9eefda] | 1218 | BFS.PredecessorList[OtherAtom->nr] = Walker; // Walker is the predecessor
|
---|
| 1219 | BFS.ShortestPathList[OtherAtom->nr] = BFS.ShortestPathList[Walker->nr] + 1;
|
---|
[e138de] | 1220 | Log() << Verbose(2) << "Coloring OtherAtom " << OtherAtom->Name << " " << ((BFS.ColorList[OtherAtom->nr] == white) ? "white" : "lightgray") << ", its predecessor is " << Walker->Name << " and its Shortest Path is " << BFS.ShortestPathList[OtherAtom->nr] << " egde(s) long." << endl;
|
---|
[9eefda] | 1221 | if ((((BFS.ShortestPathList[OtherAtom->nr] < BFS.BondOrder) && (Binder != Bond)))) { // Check for maximum distance
|
---|
[e138de] | 1222 | Log() << Verbose(3);
|
---|
[ce7cc5] | 1223 | if (AddedAtomList[OtherAtom->nr] == NULL) { // add if it's not been so far
|
---|
| 1224 | AddedAtomList[OtherAtom->nr] = Mol->AddCopyAtom(OtherAtom);
|
---|
[e138de] | 1225 | Log() << Verbose(0) << "Added OtherAtom " << OtherAtom->Name;
|
---|
[ce7cc5] | 1226 | AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->nr], AddedAtomList[OtherAtom->nr], Binder);
|
---|
[e138de] | 1227 | Log() << Verbose(0) << " and bond " << *(AddedBondList[Binder->nr]) << ", ";
|
---|
[9eefda] | 1228 | } else { // this code should actually never come into play (all white atoms are not yet present in BondMolecule, that's why they are white in the first place)
|
---|
[e138de] | 1229 | Log() << Verbose(0) << "Not adding OtherAtom " << OtherAtom->Name;
|
---|
[ce7cc5] | 1230 | if (AddedBondList[Binder->nr] == NULL) {
|
---|
| 1231 | AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->nr], AddedAtomList[OtherAtom->nr], Binder);
|
---|
[e138de] | 1232 | Log() << Verbose(0) << ", added Bond " << *(AddedBondList[Binder->nr]);
|
---|
[ce7cc5] | 1233 | } else
|
---|
[e138de] | 1234 | Log() << Verbose(0) << ", not added Bond ";
|
---|
[ce7cc5] | 1235 | }
|
---|
[e138de] | 1236 | Log() << Verbose(0) << ", putting OtherAtom into queue." << endl;
|
---|
[9eefda] | 1237 | BFS.BFSStack->Push(OtherAtom);
|
---|
[ce7cc5] | 1238 | } else { // out of bond order, then replace
|
---|
| 1239 | if ((AddedAtomList[OtherAtom->nr] == NULL) && (Binder->Cyclic))
|
---|
| 1240 | BFS.ColorList[OtherAtom->nr] = white; // unmark if it has not been queued/added, to make it available via its other bonds (cyclic)
|
---|
| 1241 | if (Binder == Bond)
|
---|
[e138de] | 1242 | Log() << Verbose(3) << "Not Queueing, is the Root bond";
|
---|
[ce7cc5] | 1243 | else if (BFS.ShortestPathList[OtherAtom->nr] >= BFS.BondOrder)
|
---|
[e138de] | 1244 | Log() << Verbose(3) << "Not Queueing, is out of Bond Count of " << BFS.BondOrder;
|
---|
[ce7cc5] | 1245 | if (!Binder->Cyclic)
|
---|
[e138de] | 1246 | Log() << Verbose(0) << ", is not part of a cyclic bond, saturating bond with Hydrogen." << endl;
|
---|
[ce7cc5] | 1247 | if (AddedBondList[Binder->nr] == NULL) {
|
---|
| 1248 | if ((AddedAtomList[OtherAtom->nr] != NULL)) { // .. whether we add or saturate
|
---|
| 1249 | AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->nr], AddedAtomList[OtherAtom->nr], Binder);
|
---|
| 1250 | } else {
|
---|
[9eefda] | 1251 | #ifdef ADDHYDROGEN
|
---|
[e138de] | 1252 | if (!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->nr], Walker, OtherAtom, IsAngstroem))
|
---|
[9eefda] | 1253 | exit(1);
|
---|
| 1254 | #endif
|
---|
[ce7cc5] | 1255 | }
|
---|
| 1256 | }
|
---|
| 1257 | }
|
---|
[9eefda] | 1258 | }
|
---|
| 1259 | ;
|
---|
[ce7cc5] | 1260 |
|
---|
[e138de] | 1261 | void BreadthFirstSearchAdd_VisitedNode(molecule *Mol, struct BFSAccounting &BFS, atom *&Walker, atom *&OtherAtom, bond *&Binder, bond *&Bond, atom **&AddedAtomList, bond **&AddedBondList, bool IsAngstroem)
|
---|
[ce7cc5] | 1262 | {
|
---|
[e138de] | 1263 | Log() << Verbose(3) << "Not Adding, has already been visited." << endl;
|
---|
[ce7cc5] | 1264 | // This has to be a cyclic bond, check whether it's present ...
|
---|
| 1265 | if (AddedBondList[Binder->nr] == NULL) {
|
---|
[9eefda] | 1266 | if ((Binder != Bond) && (Binder->Cyclic) && (((BFS.ShortestPathList[Walker->nr] + 1) < BFS.BondOrder))) {
|
---|
[ce7cc5] | 1267 | AddedBondList[Binder->nr] = Mol->CopyBond(AddedAtomList[Walker->nr], AddedAtomList[OtherAtom->nr], Binder);
|
---|
| 1268 | } else { // if it's root bond it has to broken (otherwise we would not create the fragments)
|
---|
[9eefda] | 1269 | #ifdef ADDHYDROGEN
|
---|
[e138de] | 1270 | if(!Mol->AddHydrogenReplacementAtom(Binder, AddedAtomList[Walker->nr], Walker, OtherAtom, IsAngstroem))
|
---|
[9eefda] | 1271 | exit(1);
|
---|
| 1272 | #endif
|
---|
[ce7cc5] | 1273 | }
|
---|
| 1274 | }
|
---|
[9eefda] | 1275 | }
|
---|
| 1276 | ;
|
---|
[cee0b57] | 1277 |
|
---|
| 1278 | /** Adds atoms up to \a BondCount distance from \a *Root and notes them down in \a **AddedAtomList.
|
---|
| 1279 | * Gray vertices are always enqueued in an StackClass<atom *> FIFO queue, the rest is usual BFS with adding vertices found was
|
---|
| 1280 | * white and putting into queue.
|
---|
| 1281 | * \param *out output stream for debugging
|
---|
| 1282 | * \param *Mol Molecule class to add atoms to
|
---|
| 1283 | * \param **AddedAtomList list with added atom pointers, index is atom father's number
|
---|
| 1284 | * \param **AddedBondList list with added bond pointers, index is bond father's number
|
---|
| 1285 | * \param *Root root vertex for BFS
|
---|
| 1286 | * \param *Bond bond not to look beyond
|
---|
| 1287 | * \param BondOrder maximum distance for vertices to add
|
---|
| 1288 | * \param IsAngstroem lengths are in angstroem or bohrradii
|
---|
| 1289 | */
|
---|
[e138de] | 1290 | void molecule::BreadthFirstSearchAdd(molecule *Mol, atom **&AddedAtomList, bond **&AddedBondList, atom *Root, bond *Bond, int BondOrder, bool IsAngstroem)
|
---|
[cee0b57] | 1291 | {
|
---|
[ce7cc5] | 1292 | struct BFSAccounting BFS;
|
---|
[cee0b57] | 1293 | atom *Walker = NULL, *OtherAtom = NULL;
|
---|
[ce7cc5] | 1294 | bond *Binder = NULL;
|
---|
[cee0b57] | 1295 |
|
---|
| 1296 | // add Root if not done yet
|
---|
[9eefda] | 1297 | if (AddedAtomList[Root->nr] == NULL) // add Root if not yet present
|
---|
[cee0b57] | 1298 | AddedAtomList[Root->nr] = Mol->AddCopyAtom(Root);
|
---|
| 1299 |
|
---|
[ce7cc5] | 1300 | BreadthFirstSearchAdd_Init(BFS, Root, BondOrder, AtomCount, AddedAtomList);
|
---|
[cee0b57] | 1301 |
|
---|
| 1302 | // and go on ... Queue always contains all lightgray vertices
|
---|
[9eefda] | 1303 | while (!BFS.BFSStack->IsEmpty()) {
|
---|
[cee0b57] | 1304 | // we have to pop the oldest atom from stack. This keeps the atoms on the stack always of the same ShortestPath distance.
|
---|
| 1305 | // e.g. if current atom is 2, push to end of stack are of length 3, but first all of length 2 would be popped. They again
|
---|
| 1306 | // append length of 3 (their neighbours). Thus on stack we have always atoms of a certain length n at bottom of stack and
|
---|
| 1307 | // followed by n+1 till top of stack.
|
---|
[9eefda] | 1308 | Walker = BFS.BFSStack->PopFirst(); // pop oldest added
|
---|
[e138de] | 1309 | Log() << Verbose(1) << "Current Walker is: " << Walker->Name << ", and has " << Walker->ListOfBonds.size() << " bonds." << endl;
|
---|
[266237] | 1310 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 1311 | if ((*Runner) != NULL) { // don't look at bond equal NULL
|
---|
[ce7cc5] | 1312 | Binder = (*Runner);
|
---|
[266237] | 1313 | OtherAtom = (*Runner)->GetOtherAtom(Walker);
|
---|
[e138de] | 1314 | Log() << Verbose(2) << "Current OtherAtom is: " << OtherAtom->Name << " for bond " << *(*Runner) << "." << endl;
|
---|
[ce7cc5] | 1315 | if (BFS.ColorList[OtherAtom->nr] == white) {
|
---|
[e138de] | 1316 | BreadthFirstSearchAdd_UnvisitedNode(Mol, BFS, Walker, OtherAtom, Binder, Bond, AddedAtomList, AddedBondList, IsAngstroem);
|
---|
[cee0b57] | 1317 | } else {
|
---|
[e138de] | 1318 | BreadthFirstSearchAdd_VisitedNode(Mol, BFS, Walker, OtherAtom, Binder, Bond, AddedAtomList, AddedBondList, IsAngstroem);
|
---|
[cee0b57] | 1319 | }
|
---|
| 1320 | }
|
---|
| 1321 | }
|
---|
[ce7cc5] | 1322 | BFS.ColorList[Walker->nr] = black;
|
---|
[e138de] | 1323 | Log() << Verbose(1) << "Coloring Walker " << Walker->Name << " black." << endl;
|
---|
[cee0b57] | 1324 | }
|
---|
[ce7cc5] | 1325 | BreadthFirstSearchAdd_Free(BFS);
|
---|
[9eefda] | 1326 | }
|
---|
| 1327 | ;
|
---|
[cee0b57] | 1328 |
|
---|
[266237] | 1329 | /** Adds a bond as a copy to a given one
|
---|
| 1330 | * \param *left leftatom of new bond
|
---|
| 1331 | * \param *right rightatom of new bond
|
---|
| 1332 | * \param *CopyBond rest of fields in bond are copied from this
|
---|
| 1333 | * \return pointer to new bond
|
---|
| 1334 | */
|
---|
| 1335 | bond * molecule::CopyBond(atom *left, atom *right, bond *CopyBond)
|
---|
| 1336 | {
|
---|
| 1337 | bond *Binder = AddBond(left, right, CopyBond->BondDegree);
|
---|
| 1338 | Binder->Cyclic = CopyBond->Cyclic;
|
---|
| 1339 | Binder->Type = CopyBond->Type;
|
---|
| 1340 | return Binder;
|
---|
[9eefda] | 1341 | }
|
---|
| 1342 | ;
|
---|
[266237] | 1343 |
|
---|
[e138de] | 1344 | void BuildInducedSubgraph_Init(atom **&ParentList, int AtomCount)
|
---|
[cee0b57] | 1345 | {
|
---|
| 1346 | // reset parent list
|
---|
[7218f8] | 1347 | ParentList = Calloc<atom*> (AtomCount, "molecule::BuildInducedSubgraph_Init: **ParentList");
|
---|
[e138de] | 1348 | Log() << Verbose(3) << "Resetting ParentList." << endl;
|
---|
[9eefda] | 1349 | }
|
---|
| 1350 | ;
|
---|
[cee0b57] | 1351 |
|
---|
[e138de] | 1352 | void BuildInducedSubgraph_FillParentList(const molecule *mol, const molecule *Father, atom **&ParentList)
|
---|
[43587e] | 1353 | {
|
---|
[cee0b57] | 1354 | // fill parent list with sons
|
---|
[e138de] | 1355 | Log() << Verbose(3) << "Filling Parent List." << endl;
|
---|
[43587e] | 1356 | atom *Walker = mol->start;
|
---|
| 1357 | while (Walker->next != mol->end) {
|
---|
[cee0b57] | 1358 | Walker = Walker->next;
|
---|
| 1359 | ParentList[Walker->father->nr] = Walker;
|
---|
| 1360 | // Outputting List for debugging
|
---|
[e138de] | 1361 | Log() << Verbose(4) << "Son[" << Walker->father->nr << "] of " << Walker->father << " is " << ParentList[Walker->father->nr] << "." << endl;
|
---|
[cee0b57] | 1362 | }
|
---|
| 1363 |
|
---|
[9eefda] | 1364 | }
|
---|
| 1365 | ;
|
---|
[43587e] | 1366 |
|
---|
[e138de] | 1367 | void BuildInducedSubgraph_Finalize(atom **&ParentList)
|
---|
[43587e] | 1368 | {
|
---|
| 1369 | Free(&ParentList);
|
---|
[9eefda] | 1370 | }
|
---|
| 1371 | ;
|
---|
[43587e] | 1372 |
|
---|
[e138de] | 1373 | bool BuildInducedSubgraph_CreateBondsFromParent(molecule *mol, const molecule *Father, atom **&ParentList)
|
---|
[43587e] | 1374 | {
|
---|
| 1375 | bool status = true;
|
---|
| 1376 | atom *Walker = NULL;
|
---|
| 1377 | atom *OtherAtom = NULL;
|
---|
[cee0b57] | 1378 | // check each entry of parent list and if ok (one-to-and-onto matching) create bonds
|
---|
[e138de] | 1379 | Log() << Verbose(3) << "Creating bonds." << endl;
|
---|
[cee0b57] | 1380 | Walker = Father->start;
|
---|
| 1381 | while (Walker->next != Father->end) {
|
---|
| 1382 | Walker = Walker->next;
|
---|
| 1383 | if (ParentList[Walker->nr] != NULL) {
|
---|
| 1384 | if (ParentList[Walker->nr]->father != Walker) {
|
---|
| 1385 | status = false;
|
---|
| 1386 | } else {
|
---|
[266237] | 1387 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 1388 | OtherAtom = (*Runner)->GetOtherAtom(Walker);
|
---|
[cee0b57] | 1389 | if (ParentList[OtherAtom->nr] != NULL) { // if otheratom is also a father of an atom on this molecule, create the bond
|
---|
[e138de] | 1390 | Log() << Verbose(4) << "Endpoints of Bond " << (*Runner) << " are both present: " << ParentList[Walker->nr]->Name << " and " << ParentList[OtherAtom->nr]->Name << "." << endl;
|
---|
[43587e] | 1391 | mol->AddBond(ParentList[Walker->nr], ParentList[OtherAtom->nr], (*Runner)->BondDegree);
|
---|
[cee0b57] | 1392 | }
|
---|
| 1393 | }
|
---|
| 1394 | }
|
---|
| 1395 | }
|
---|
| 1396 | }
|
---|
[43587e] | 1397 | return status;
|
---|
[9eefda] | 1398 | }
|
---|
| 1399 | ;
|
---|
[cee0b57] | 1400 |
|
---|
[43587e] | 1401 | /** Adds bond structure to this molecule from \a Father molecule.
|
---|
| 1402 | * This basically causes this molecule to become an induced subgraph of the \a Father, i.e. for every bond in Father
|
---|
| 1403 | * with end points present in this molecule, bond is created in this molecule.
|
---|
| 1404 | * Special care was taken to ensure that this is of complexity O(N), where N is the \a Father's molecule::AtomCount.
|
---|
| 1405 | * \param *out output stream for debugging
|
---|
| 1406 | * \param *Father father molecule
|
---|
| 1407 | * \return true - is induced subgraph, false - there are atoms with fathers not in \a Father
|
---|
| 1408 | * \todo not checked, not fully working probably
|
---|
| 1409 | */
|
---|
[e138de] | 1410 | bool molecule::BuildInducedSubgraph(const molecule *Father)
|
---|
[43587e] | 1411 | {
|
---|
| 1412 | bool status = true;
|
---|
| 1413 | atom **ParentList = NULL;
|
---|
| 1414 |
|
---|
[e138de] | 1415 | Log() << Verbose(2) << "Begin of BuildInducedSubgraph." << endl;
|
---|
| 1416 | BuildInducedSubgraph_Init(ParentList, Father->AtomCount);
|
---|
| 1417 | BuildInducedSubgraph_FillParentList(this, Father, ParentList);
|
---|
| 1418 | status = BuildInducedSubgraph_CreateBondsFromParent(this, Father, ParentList);
|
---|
| 1419 | BuildInducedSubgraph_Finalize(ParentList);
|
---|
| 1420 | Log() << Verbose(2) << "End of BuildInducedSubgraph." << endl;
|
---|
[cee0b57] | 1421 | return status;
|
---|
[9eefda] | 1422 | }
|
---|
| 1423 | ;
|
---|
[cee0b57] | 1424 |
|
---|
| 1425 | /** For a given keyset \a *Fragment, checks whether it is connected in the current molecule.
|
---|
| 1426 | * \param *out output stream for debugging
|
---|
| 1427 | * \param *Fragment Keyset of fragment's vertices
|
---|
| 1428 | * \return true - connected, false - disconnected
|
---|
| 1429 | * \note this is O(n^2) for it's just a bug checker not meant for permanent use!
|
---|
| 1430 | */
|
---|
[e138de] | 1431 | bool molecule::CheckForConnectedSubgraph(KeySet *Fragment)
|
---|
[cee0b57] | 1432 | {
|
---|
| 1433 | atom *Walker = NULL, *Walker2 = NULL;
|
---|
| 1434 | bool BondStatus = false;
|
---|
| 1435 | int size;
|
---|
| 1436 |
|
---|
[e138de] | 1437 | Log() << Verbose(1) << "Begin of CheckForConnectedSubgraph" << endl;
|
---|
| 1438 | Log() << Verbose(2) << "Disconnected atom: ";
|
---|
[cee0b57] | 1439 |
|
---|
| 1440 | // count number of atoms in graph
|
---|
| 1441 | size = 0;
|
---|
[9eefda] | 1442 | for (KeySet::iterator runner = Fragment->begin(); runner != Fragment->end(); runner++)
|
---|
[cee0b57] | 1443 | size++;
|
---|
| 1444 | if (size > 1)
|
---|
[9eefda] | 1445 | for (KeySet::iterator runner = Fragment->begin(); runner != Fragment->end(); runner++) {
|
---|
[cee0b57] | 1446 | Walker = FindAtom(*runner);
|
---|
| 1447 | BondStatus = false;
|
---|
[9eefda] | 1448 | for (KeySet::iterator runners = Fragment->begin(); runners != Fragment->end(); runners++) {
|
---|
[cee0b57] | 1449 | Walker2 = FindAtom(*runners);
|
---|
[266237] | 1450 | for (BondList::const_iterator Runner = Walker->ListOfBonds.begin(); Runner != Walker->ListOfBonds.end(); (++Runner)) {
|
---|
| 1451 | if ((*Runner)->GetOtherAtom(Walker) == Walker2) {
|
---|
[cee0b57] | 1452 | BondStatus = true;
|
---|
| 1453 | break;
|
---|
| 1454 | }
|
---|
| 1455 | if (BondStatus)
|
---|
| 1456 | break;
|
---|
| 1457 | }
|
---|
| 1458 | }
|
---|
| 1459 | if (!BondStatus) {
|
---|
[e138de] | 1460 | Log() << Verbose(0) << (*Walker) << endl;
|
---|
[cee0b57] | 1461 | return false;
|
---|
| 1462 | }
|
---|
| 1463 | }
|
---|
| 1464 | else {
|
---|
[e138de] | 1465 | Log() << Verbose(0) << "none." << endl;
|
---|
[cee0b57] | 1466 | return true;
|
---|
| 1467 | }
|
---|
[e138de] | 1468 | Log() << Verbose(0) << "none." << endl;
|
---|
[cee0b57] | 1469 |
|
---|
[e138de] | 1470 | Log() << Verbose(1) << "End of CheckForConnectedSubgraph" << endl;
|
---|
[cee0b57] | 1471 |
|
---|
| 1472 | return true;
|
---|
| 1473 | }
|
---|