Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/bondgraph.cpp

    r244a84 rb998c3  
    1111#include "bondgraph.hpp"
    1212#include "element.hpp"
    13 #include "info.hpp"
    1413#include "log.hpp"
    1514#include "molecule.hpp"
     
    4342bool BondGraph::LoadBondLengthTable(const string &filename)
    4443{
    45   Info FunctionInfo(__func__);
    4644  bool status = true;
    4745  MatrixContainer *TempContainer = NULL;
     
    5553
    5654  // 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);
    6256
    6357  // find greatest distance
Note: See TracChangeset for help on using the changeset viewer.