Skip to content

Commit

Permalink
[skip ci] dox++
Browse files Browse the repository at this point in the history
  • Loading branch information
evaleev committed Sep 9, 2024
1 parent ddce13e commit e005548
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/TiledArray/range.h
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ class Range {
return *this;
}

/// Shift the lower and upper bound of this range
/// Shifts the lower and upper bounds of this range

/// \tparam Index An integral range type
/// \param bound_shift The shift to be applied to the range
Expand Down Expand Up @@ -987,7 +987,7 @@ class Range {
return *this;
}

/// Shift the lower and upper bound of this range
/// Shifts the lower and upper bounds of this range

/// \tparam Index An integral type
/// \param bound_shift The shift to be applied to the range
Expand All @@ -998,7 +998,7 @@ class Range {
return inplace_shift<std::initializer_list<Index>>(bound_shift);
}

/// Create a Range with shiften lower and upper bounds
/// Create a Range with shifted lower and upper bounds

/// \tparam Index An integral range type
/// \param bound_shift The shift to be applied to the range
Expand All @@ -1011,7 +1011,7 @@ class Range {
return result;
}

/// Create a Range with shiften lower and upper bounds
/// Create a Range with shifted lower and upper bounds

/// \tparam Index An integral type
/// \param bound_shift The shift to be applied to the range
Expand Down
10 changes: 5 additions & 5 deletions src/TiledArray/tile.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ namespace TiledArray {
/// object to be used in TiledArray expressions, users must also define the
/// following functions:
/// \li \c add
/// \li \c add_to
/// \li \c add_to (in-place add)
/// \li \c subt
/// \li \c subt_to
/// \li \c subt_to (in-place subt)
/// \li \c mult
/// \li \c mult_to
/// \li \c mult_to (in-place mult)
/// \li \c scale
/// \li \c scale_to
/// \li \c scale_to (in-place scale)
/// \li \c gemm
/// \li \c neg
/// \li \c permute
/// \li \c empty
/// \li \c shift
/// \li \c shift_to
/// \li \c shift_to (in-place shift)
/// \li \c trace
/// \li \c sum
/// \li \c product
Expand Down

0 comments on commit e005548

Please sign in to comment.