Changes in src/molecule_graph.cpp [68f03d:920c70]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule_graph.cpp
r68f03d r920c70 12 12 #include "element.hpp" 13 13 #include "helpers.hpp" 14 #include "info.hpp" 14 15 #include "linkedcell.hpp" 15 16 #include "lists.hpp" … … 54 55 void molecule::CreateAdjacencyListFromDbondFile(ifstream *input) 55 56 { 56 57 Info FunctionInfo(__func__); 57 58 // 1 We will parse bonds out of the dbond file created by tremolo. 58 59 int atom1, atom2; 59 60 atom *Walker, *OtherWalker; 60 61 if (!input) { 62 DoLog(1) && (Log() << Verbose(1) << "Opening silica failed \n"); 61 char line[MAXSTRINGSIZE]; 62 63 if (input->fail()) { 64 DoeLog(0) && (eLog() << Verbose(0) << "Opening of bond file failed \n"); 65 performCriticalExit(); 63 66 }; 64 67 65 *input >> ws >> atom1;66 *input >> ws >> atom2;67 DoLog(1) && (Log() << Verbose(1) << "Scanning file \n");68 // skip header 69 input->getline(line,MAXSTRINGSIZE); 70 DoLog(1) && (Log() << Verbose(1) << "Scanning file ... \n"); 68 71 while (!input->eof()) // Check whether we read everything already 69 72 { 70 *input >> ws >> atom1; 71 *input >> ws >> atom2; 72 73 input->getline(line,MAXSTRINGSIZE); 74 stringstream zeile(line); 75 zeile >> atom1; 76 zeile >> atom2; 77 78 DoLog(2) && (Log() << Verbose(2) << "Looking for atoms " << atom1 << " and " << atom2 << "." << endl); 73 79 if (atom2 < atom1) //Sort indices of atoms in order 74 80 flip(atom1, atom2); … … 137 143 // create a list to map Tesselpoint::nr to atom * 138 144 DoLog(2) && (Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl); 139 AtomMap = Calloc<atom *> (AtomCount, "molecule::CreateAdjacencyList - **AtomCount"); 145 AtomMap = new atom *[AtomCount]; 146 for (int i=0;i<AtomCount;i++) 147 AtomMap[i] = NULL; 140 148 Walker = start; 141 149 while (Walker->next != end) { … … 188 196 } 189 197 } 190 Free(&AtomMap);198 delete[](AtomMap); 191 199 delete (LC); 192 200 DoLog(1) && (Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl); … … 624 632 { 625 633 BFS.AtomCount = AtomCount; 626 BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");627 BFS.ShortestPathList = Malloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");628 BFS.ColorList = Calloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");634 BFS.PredecessorList = new atom*[AtomCount]; 635 BFS.ShortestPathList = new int[AtomCount]; 636 BFS.ColorList = new enum Shading[AtomCount]; 629 637 BFS.BFSStack = new StackClass<atom *> (AtomCount); 630 638 631 for (int i = AtomCount; i--;) 639 for (int i = AtomCount; i--;) { 632 640 BFS.ShortestPathList[i] = -1; 641 BFS.PredecessorList[i] = 0; 642 } 633 643 }; 634 644 … … 639 649 void FinalizeBFSAccounting(struct BFSAccounting &BFS) 640 650 { 641 Free(&BFS.PredecessorList);642 Free(&BFS.ShortestPathList);643 Free(&BFS.ColorList);651 delete[](BFS.PredecessorList); 652 delete[](BFS.ShortestPathList); 653 delete[](BFS.ColorList); 644 654 delete (BFS.BFSStack); 645 655 BFS.AtomCount = 0; … … 1061 1071 1062 1072 // allocate storage structure 1063 CurrentBonds = Calloc<int> (8, "molecule::CheckAdjacencyFileAgainstMolecule - CurrentBonds"); // contains parsed bonds of current atom 1073 CurrentBonds = new int[8]; // contains parsed bonds of current atom 1074 for(int i=0;i<8;i++) 1075 CurrentBonds[i] = 0; 1064 1076 return true; 1065 1077 } … … 1070 1082 File.close(); 1071 1083 File.clear(); 1072 Free(&CurrentBonds);1084 delete[](CurrentBonds); 1073 1085 } 1074 1086 ; … … 1114 1126 bool status = true; 1115 1127 atom *Walker = NULL; 1116 char *buffer = NULL;1117 1128 int *CurrentBonds = NULL; 1118 1129 int NonMatchNumber = 0; // will number of atoms with differing bond structure … … 1124 1135 } 1125 1136 1126 buffer = Malloc<char> (MAXSTRINGSIZE, "molecule::CheckAdjacencyFileAgainstMolecule: *buffer");1137 char buffer[MAXSTRINGSIZE]; 1127 1138 // Parse the file line by line and count the bonds 1128 1139 while (!File.eof()) { … … 1142 1153 } 1143 1154 } 1144 Free(&buffer);1145 1155 CheckAdjacencyFileAgainstMolecule_Finalize(File, CurrentBonds); 1146 1156 … … 1196 1206 BFS.AtomCount = AtomCount; 1197 1207 BFS.BondOrder = BondOrder; 1198 BFS.PredecessorList = Calloc<atom*> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: **PredecessorList");1199 BFS.ShortestPathList = Calloc<int> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ShortestPathList");1200 BFS.ColorList = Malloc<enum Shading> (AtomCount, "molecule::BreadthFirstSearchAdd_Init: *ColorList");1208 BFS.PredecessorList = new atom*[AtomCount]; 1209 BFS.ShortestPathList = new int[AtomCount]; 1210 BFS.ColorList = new enum Shading[AtomCount]; 1201 1211 BFS.BFSStack = new StackClass<atom *> (AtomCount); 1202 1212 … … 1207 1217 // initialise each vertex as white with no predecessor, empty queue, color Root lightgray 1208 1218 for (int i = AtomCount; i--;) { 1219 BFS.PredecessorList[i] = NULL; 1209 1220 BFS.ShortestPathList[i] = -1; 1210 1221 if ((AddedAtomList != NULL) && (AddedAtomList[i] != NULL)) // mark already present atoms (i.e. Root and maybe others) as visited … … 1213 1224 BFS.ColorList[i] = white; 1214 1225 } 1215 //BFS.ShortestPathList[Root->nr] = 0; // is set due to Calloc()1226 //BFS.ShortestPathList[Root->nr] = 0; // done by Calloc 1216 1227 } 1217 1228 ; … … 1219 1230 void BreadthFirstSearchAdd_Free(struct BFSAccounting &BFS) 1220 1231 { 1221 Free(&BFS.PredecessorList);1222 Free(&BFS.ShortestPathList);1223 Free(&BFS.ColorList);1232 delete[](BFS.PredecessorList); 1233 delete[](BFS.ShortestPathList); 1234 delete[](BFS.ColorList); 1224 1235 delete (BFS.BFSStack); 1225 1236 BFS.AtomCount = 0; … … 1360 1371 { 1361 1372 // reset parent list 1362 ParentList = Calloc<atom*> (AtomCount, "molecule::BuildInducedSubgraph_Init: **ParentList"); 1373 ParentList = new atom*[AtomCount]; 1374 for (int i=0;i<AtomCount;i++) 1375 ParentList[i] = NULL; 1363 1376 DoLog(3) && (Log() << Verbose(3) << "Resetting ParentList." << endl); 1364 1377 } … … 1382 1395 void BuildInducedSubgraph_Finalize(atom **&ParentList) 1383 1396 { 1384 Free(&ParentList);1397 delete[](ParentList); 1385 1398 } 1386 1399 ;
Note:
See TracChangeset
for help on using the changeset viewer.