Changeset d34341 for molecuilder/src/bondgraph.cpp
- Timestamp:
- Jan 27, 2010, 2:36:09 PM (16 years ago)
- Children:
- dbd19f
- Parents:
- 41182a (diff), 478683 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
molecuilder/src/bondgraph.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/bondgraph.cpp
r41182a rd34341 11 11 #include "bondgraph.hpp" 12 12 #include "element.hpp" 13 #include "info.hpp" 13 14 #include "log.hpp" 14 15 #include "molecule.hpp" … … 42 43 bool BondGraph::LoadBondLengthTable(const string &filename) 43 44 { 45 Info FunctionInfo(__func__); 44 46 bool status = true; 45 47 MatrixContainer *TempContainer = NULL; … … 53 55 54 56 // parse in matrix 55 status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0); 57 if (status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0)) { 58 Log() << Verbose(1) << "Parsing bond length matrix successful." << endl; 59 } else { 60 eLog() << Verbose(1) << "Parsing bond length matrix failed." << endl; 61 } 56 62 57 63 // find greatest distance
Note:
See TracChangeset
for help on using the changeset viewer.
