Changes in src/bondgraph.cpp [b998c3:244a84]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/bondgraph.cpp
rb998c3 r244a84 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.