Ticket #7645: fix_comment_typo.patch

File fix_comment_typo.patch, 1.2 KB (added by oss.2012.team+C5@…, 10 years ago)

Patch for boost/random/ranlux.hpp

  • boost/random/ranlux.hpp

     
    3737 * The levels are given in
    3838 *
    3939 *  @blockquote
    40  *  "RANLUX: A Fortran implementation ofthe high-quality
     40 *  "RANLUX: A Fortran implementation of the high-quality
    4141 *  pseudorandom number generator of Luescher", F. James,
    4242 *  Computer Physics Communications 79 (1994) 111-114
    4343 *  @endblockquote
  • libs/random/example/die.cpp

     
    4141        [warning Contrary to common C++ usage __uniform_int_distribution
    4242        does not take a /half-open range/.  Instead it takes a /closed range/.
    4343        Given the parameters 1 and 6, __uniform_int_distribution can
    44         can produce any of the values 1, 2, 3, 4, 5, or 6.]
     44        produce any of the values 1, 2, 3, 4, 5, or 6.]
    4545    >>*/
    4646    boost::random::uniform_int_distribution<> dist(1, 6);
    4747    /*<< A distribution is a function object.  We generate a random