# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1227958276 -3600
# Node ID 551369181b5078d5d2ba45ecd8b91a7daef390e4
# Parent 873168ab56201c81f806791edd518707d0ea32f7
Hide only the doc of the traits class parameter (#176)
diff --git a/lemon/preflow.h b/lemon/preflow.h
|
a
|
b
|
|
| 108 | 108 | /// \tparam _CapacityMap The type of the capacity map. The default map |
| 109 | 109 | /// type is \ref concepts::Digraph::ArcMap "_Digraph::ArcMap<int>". |
| 110 | 110 | #ifdef DOXYGEN |
| 111 | | template <typename _Digraph, typename _CapacityMap> |
| | 111 | template <typename _Digraph, typename _CapacityMap, typename _Traits> |
| 112 | 112 | #else |
| 113 | 113 | template <typename _Digraph, |
| 114 | 114 | typename _CapacityMap = typename _Digraph::template ArcMap<int>, |
| … |
… |
|
| 117 | 117 | class Preflow { |
| 118 | 118 | public: |
| 119 | 119 | |
| 120 | | ///The traits class. |
| | 120 | ///The \ref PreflowDefaultTraits "traits class" of the algorithm. |
| 121 | 121 | typedef _Traits Traits; |
| 122 | 122 | ///The type of the digraph the algorithm runs on. |
| 123 | 123 | typedef typename Traits::Digraph Digraph; |
| … |
… |
|
| 292 | 292 | _level(0), _local_level(false), |
| 293 | 293 | _excess(0), _tolerance(), _phase() {} |
| 294 | 294 | |
| 295 | | /// \brief Destrcutor. |
| | 295 | /// \brief Destructor. |
| 296 | 296 | /// |
| 297 | 297 | /// Destructor. |
| 298 | 298 | ~Preflow() { |