COIN-OR::LEMON - Graph Library

Changeset 2084:59769591eb60 in lemon-0.x for lemon/matrix_maps.h


Ignore:
Timestamp:
05/15/06 11:49:51 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2749
Message:

Documentation improvements

Rearrangements:

IO modules
Algorithms

New documentation:

SwapBpUGraphAdaptor

Demos:

strongly_connected_orientation.cc

Benchmarks:

swap_bipartite_bench.cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/matrix_maps.h

    r2072 r2084  
    4848
    4949
     50    /// \brief Constructor of the row map
     51    ///
     52    /// Constructor of the row map.
    5053    MatrixRowMap(MatrixMap& _matrix, typename MatrixMap::FirstKey _row)
    5154      : matrix(_matrix), row(_row) {}
     
    9295
    9396
     97    /// \brief Constructor of the row map
     98    ///
     99    /// Constructor of the row map.
    94100    ConstMatrixRowMap(const MatrixMap& _matrix,
    95101                      typename MatrixMap::FirstKey _row)
     
    109115  };
    110116
     117  /// \ingroup matrices
     118  ///
    111119  /// \brief Gives back a row view of the matrix map
    112120  ///
    113   /// \ingroup matrices
    114121  /// Gives back a row view of the matrix map.
    115122  ///
     123  /// \sa MatrixRowMap
     124  /// \sa ConstMatrixRowMap
    116125  template <typename MatrixMap>
    117126  MatrixRowMap<MatrixMap> matrixRowMap(MatrixMap& matrixMap,
     
    138147    typedef typename MatrixMap::Value Value;
    139148
     149    /// \brief Constructor of the column map
     150    ///
     151    /// Constructor of the column map.
    140152    MatrixColMap(MatrixMap& _matrix, typename MatrixMap::SecondKey _col)
    141153      : matrix(_matrix), col(_col) {}
     
    181193    typedef typename MatrixMap::Value Value;
    182194
     195    /// \brief Constructor of the column map
     196    ///
     197    /// Constructor of the column map.
    183198    ConstMatrixColMap(const MatrixMap& _matrix,
    184199                      typename MatrixMap::SecondKey _col)
     
    198213  };
    199214
     215  /// \ingroup matrices
     216  ///
    200217  /// \brief Gives back a column view of the matrix map
    201218  ///
    202   /// \ingroup matrices
    203219  /// Gives back a column view of the matrix map.
    204220  ///
     221  /// \sa MatrixColMap
     222  /// \sa ConstMatrixColMap
    205223  template <typename MatrixMap>
    206224  MatrixColMap<MatrixMap> matrixColMap(MatrixMap& matrixMap,
Note: See TracChangeset for help on using the changeset viewer.