Re: Conveniently generating random numbers with TR1 random
Alberto Ganesh Barbati wrote:
I don't get your point. What does operator()(Generator&, SomeInt) matter
with the "The problem with this is that it's way verbose and requires
one object per range" issue?
It's very simple, really. The task is to generate an integral number in
the range [a, b]. I was saying there are two options:
a) Call uniform_int<int>(a, b)(gen)
b) Call a + uniform_int<int>(whatever, whatever)(gen, b + 1)
You say that (a) is a good option, efficiency-wise and all. Then I don't
understand why option (b) is in the picture. Why would people consume
interface real estate with a function that's not needed? The function
propagates up to variate_generator, so it's not an accident or an
oversight; there must be a reason.
By the way, I just had a look at the latest draft N2461 and things have
changed quite a bit from your references. For example the
variate_generator template does not exist anymore so the description of
operator()(g,p) no longer has a reference to it. On a side note,
uniform_int is now named uniform_int_distribution.
I'm perusing:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1836.pdf
which does feature variate_generator and uniform_int. Then I searched
specifically for uniform_int_distribution and found:
www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2032.pdf
which indeed lacks the variate_generator and renames uniform_int to
uniform_int_distribution. I see with chagrin that the
operator()(UniformRandomNumberGenerator& urng, const param_type& parm)
is still there. I don't understand why. The nice thing is that the
function is constrained to a specific integral type param_type.
So I'm asking whether there's an easy and simple way to generate
integral numbers within the TR1 framework. Did I overlook something? If
not, it would be great if a convenience type or function was present in
C++0X.
You might think about something like
template <class Type, class Rng>
Type generate_uniform_int(Type a, Type b, Rng& gen)
{
return uniform_int<Type>(a, b)(gen);
}
but I see little value over the example I have shown above: all you gain
is the possible automatic deduction of Type. I frankly prefer specifying
Type explicitly as I usually do, for example, even with std::min/max.
Well I'd like it too, if there was a compelling argument in its favor.
don't see one. So far, using the standard library does not necessitate
explicit type specification, and I don't see a need for the random
number generator to start a new trend.
I apologize, English is not my mother language. I don't understand what
is "it" in the sentence "I'd like it too" (I did not say that I like
generate_uniform_int, in fact I don't). The rest of the sentence is also
quite obscure to me. Could you please rephrase?
I meant: "I'd like to specify the type too, if there was a compelling
argument in favor of doing so".
Truth be told, with "auto" things will get a tad more palatable:
auto digit = uniform_int<char>('0', '9')(gen);
At least I can enjoy some weird Puritan satisfaction that I only
specified that I traffic in "char" three times instead of four.
If you say so... I usually prefer having the type of variable clearly
shown, especially when I know it and the name is short as in this case.
Experience with "auto" tends to suggest that omitting redundant type
names generally makes for more robust code. Lacking hard evidence, I
guess there's not much of a point I can make though :o).
Andrei
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ]