COIN-OR::LEMON - Graph Library

Changeset 1424:7edc220d6244 in lemon


Ignore:
Timestamp:
05/15/19 13:33:55 (5 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
1.2
Phase:
public
Amend:
64656133343266303432616633616532343038303566396637363761343462333836636530353933
Message:

Backport relevant parts of bugfixes [ad22262328b3], [61fdd06833a6] and [4add05447ca0] to branch 1.2 (#623)

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • lemon/list_graph.h

    r1355 r1424  
    12101210    ListGraph() {}
    12111211
    1212     typedef Parent::OutArcIt IncEdgeIt;
     1212    typedef Parent::IncEdgeIt IncEdgeIt;
    12131213
    12141214    /// \brief Add a new node to the graph.
  • tools/dimacs-solver.cc

    r1169 r1424  
    222222        throw IoError("Cannot open the file for writing", ap.files()[1]);
    223223      }
     224      // fall through
    224225    case 1:
    225226      input.open(ap.files()[0].c_str());
     
    227228        throw IoError("File cannot be found", ap.files()[0]);
    228229      }
     230      // fall through
    229231    case 0:
    230232      break;
     
    251253        case DimacsDescriptor::SP:
    252254          std::cout << "sp";
     255          break;
    253256        case DimacsDescriptor::MAT:
    254257          std::cout << "mat";
  • tools/dimacs-to-lgf.cc

    r631 r1397  
    7474        throw IoError("Cannot open the file for writing", ap.files()[1]);
    7575      }
     76      // fall through
    7677    case 1:
    7778      input.open(ap.files()[0].c_str());
     
    7980        throw IoError("File cannot be found", ap.files()[0]);
    8081      }
     82      // fall through
    8183    case 0:
    8284      break;
Note: See TracChangeset for help on using the changeset viewer.