Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/bondgraph.cpp

    rb998c3 r244a84  
    1111#include "bondgraph.hpp"
    1212#include "element.hpp"
     13#include "info.hpp"
    1314#include "log.hpp"
    1415#include "molecule.hpp"
     
    4243bool BondGraph::LoadBondLengthTable(const string &filename)
    4344{
     45  Info FunctionInfo(__func__);
    4446  bool status = true;
    4547  MatrixContainer *TempContainer = NULL;
     
    5355
    5456  // 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  }
    5662
    5763  // find greatest distance
Note: See TracChangeset for help on using the changeset viewer.