COIN-OR::LEMON - Graph Library

Changeset 2559:75dd6d724f26 in lemon-0.x


Ignore:
Timestamp:
01/29/08 04:39:05 (16 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3440
Message:

grid_ugraph.h: fixed #18 (global functions inlined)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/grid_ugraph.h

    r2553 r2559  
    476476  ///
    477477  /// Just returns an IndexMap for the grid graph.
    478   GridUGraph::IndexMap indexMap(const GridUGraph& graph) {
     478  inline GridUGraph::IndexMap indexMap(const GridUGraph& graph) {
    479479    return GridUGraph::IndexMap(graph);
    480480  }
     
    483483  ///
    484484  /// Just returns a RowMap for the grid graph.
    485   GridUGraph::RowMap rowMap(const GridUGraph& graph) {
     485  inline GridUGraph::RowMap rowMap(const GridUGraph& graph) {
    486486    return GridUGraph::RowMap(graph);
    487487  }
     
    490490  ///
    491491  /// Just returns a ColMap for the grid graph.
    492   GridUGraph::ColMap colMap(const GridUGraph& graph) {
     492  inline GridUGraph::ColMap colMap(const GridUGraph& graph) {
    493493    return GridUGraph::ColMap(graph);
    494494  }
Note: See TracChangeset for help on using the changeset viewer.