equal
deleted
inserted
replaced
473 }; |
473 }; |
474 |
474 |
475 /// \brief Index map of the grid graph |
475 /// \brief Index map of the grid graph |
476 /// |
476 /// |
477 /// Just returns an IndexMap for the grid graph. |
477 /// Just returns an IndexMap for the grid graph. |
478 GridUGraph::IndexMap indexMap(const GridUGraph& graph) { |
478 inline GridUGraph::IndexMap indexMap(const GridUGraph& graph) { |
479 return GridUGraph::IndexMap(graph); |
479 return GridUGraph::IndexMap(graph); |
480 } |
480 } |
481 |
481 |
482 /// \brief Row map of the grid graph |
482 /// \brief Row map of the grid graph |
483 /// |
483 /// |
484 /// Just returns a RowMap for the grid graph. |
484 /// Just returns a RowMap for the grid graph. |
485 GridUGraph::RowMap rowMap(const GridUGraph& graph) { |
485 inline GridUGraph::RowMap rowMap(const GridUGraph& graph) { |
486 return GridUGraph::RowMap(graph); |
486 return GridUGraph::RowMap(graph); |
487 } |
487 } |
488 |
488 |
489 /// \brief Column map of the grid graph |
489 /// \brief Column map of the grid graph |
490 /// |
490 /// |
491 /// Just returns a ColMap for the grid graph. |
491 /// Just returns a ColMap for the grid graph. |
492 GridUGraph::ColMap colMap(const GridUGraph& graph) { |
492 inline GridUGraph::ColMap colMap(const GridUGraph& graph) { |
493 return GridUGraph::ColMap(graph); |
493 return GridUGraph::ColMap(graph); |
494 } |
494 } |
495 } |
495 } |
496 #endif |
496 #endif |