
17 Jun
2008
17 Jun
'08
8:47 a.m.
On Apr 29, 2008, at 4:01 PM, Neal Becker wrote:
Can we please change
assert(min_arg < max_arg);
to assert (min_arg <= max_arg)
? Otherwise, breaks on corner case.
Actually for uniform real the range is [min_arg,max_arg) and thus min_arg == max_arg is the empty set. Hence the test is correct as it is Matthias