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