equal
deleted
inserted
replaced
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 |