utils/generate-distributions.pl
author Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
Thu, 02 Oct 2008 17:30:38 +0100
changeset 3728 ca97a92eb7d0
parent 191 411f29b214f0
permissions -rwxr-xr-x
Pull pybindgen revno 582 for increased stability of the generated python files with multiple developers doing the scanning.

#!/usr/bin/env perl

use Math::Random qw(:all);

@values = random_uniform (10000, 0, 10000000);

foreach $value (@values) {
    print $value . "\n";
}