Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reindent
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 4 Aug 2017 23:10:58 +0000 (01:10 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 4 Aug 2017 23:10:58 +0000 (01:10 +0200)
include/xbt/algorithm.hpp

index 85cc181..1a91452 100644 (file)
@@ -13,9 +13,9 @@ namespace xbt {
  * three colors.  Since there are only three colors, it is linear and much faster than a classical sort.  See for
  * example http://en.wikipedia.org/wiki/Dutch_national_flag_problem
  *
- * \param first forward iterators to the initial position of the sequence to partition.  \param last forward iterators
- * to the final position of the sequence to partition.  \param color the color function that accepts an element in the
- * range as argument, and returns a value of 0, 1, or 2.
+ * \param first forward iterators to the initial position of the sequence to partition.
+ * \param last forward iterators to the final position of the sequence to partition.
+ * \param color the color function that accepts an element in the range as argument, and returns a value of 0, 1, or 2.
  *
  * At the end of the call, elements with color 0 are at the beginning of the range, elements with color 2 are at the end
  * and elements with color 1 are in the middle.