src/lemon/maps.h
changeset 1358 a81fbbac3b4c
parent 1346 639dadf8c00d
child 1359 1581f961cfaa
equal deleted inserted replaced
14:14ade9c00fae 15:b6372790fb06
   268   /// \brief Returns a \ref SourceMap class
   268   /// \brief Returns a \ref SourceMap class
   269 
   269 
   270   /// This function just returns an \ref SourceMap class.
   270   /// This function just returns an \ref SourceMap class.
   271   /// \relates SourceMap
   271   /// \relates SourceMap
   272   template <typename Graph>
   272   template <typename Graph>
   273   inline SourceMap<Graph> sourceMap(const Graph&) {
   273   inline SourceMap<Graph> sourceMap(const Graph& graph) {
   274     return SourceMap<Graph>(graph);
   274     return SourceMap<Graph>(graph);
   275   } 
   275   } 
   276 
   276 
   277   /// \brief Returns the target of the given edge.
   277   /// \brief Returns the target of the given edge.
   278   ///
   278   ///
   306   /// \brief Returns a \ref TargetMap class
   306   /// \brief Returns a \ref TargetMap class
   307 
   307 
   308   /// This function just returns an \ref TargetMap class.
   308   /// This function just returns an \ref TargetMap class.
   309   /// \relates TargetMap
   309   /// \relates TargetMap
   310   template <typename Graph>
   310   template <typename Graph>
   311   inline TargetMap<Graph> targetMap(const Graph&) {
   311   inline TargetMap<Graph> targetMap(const Graph& graph) {
   312     return TargetMap<Graph>(graph);
   312     return TargetMap<Graph>(graph);
   313   }
   313   }
   314 
   314 
   315   ///Sum of two maps
   315   ///Sum of two maps
   316 
   316