Changes in src/bondgraph.cpp [244a84:b998c3]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/bondgraph.cpp
r244a84 rb998c3 11 11 #include "bondgraph.hpp" 12 12 #include "element.hpp" 13 #include "info.hpp"14 13 #include "log.hpp" 15 14 #include "molecule.hpp" … … 43 42 bool BondGraph::LoadBondLengthTable(const string &filename) 44 43 { 45 Info FunctionInfo(__func__);46 44 bool status = true; 47 45 MatrixContainer *TempContainer = NULL; … … 55 53 56 54 // parse in matrix 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 } 55 status = TempContainer->ParseMatrix(filename.c_str(), 0, 1, 0); 62 56 63 57 // find greatest distance
Note:
See TracChangeset
for help on using the changeset viewer.