mirror of
https://github.com/dlang/dmd.git
synced 2025-05-03 08:30:21 +03:00
21 lines
443 B
D
21 lines
443 B
D
/**
|
|
* Benchmark int hashing.
|
|
*
|
|
* Copyright: Copyright Martin Nowak 2011 - 2015.
|
|
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
|
* Authors: Martin Nowak
|
|
*/
|
|
import std.random;
|
|
|
|
void main(string[] args)
|
|
{
|
|
auto rnd = Xorshift32(33);
|
|
|
|
int[int] aa;
|
|
foreach (_; 0 .. 10)
|
|
foreach (__; 0 .. 100_000)
|
|
++aa[uniform(0, 100_000, rnd)];
|
|
|
|
if (aa.length != 99998)
|
|
assert(0);
|
|
}
|