// vim: set ts=8 sts=4 et sw=4 tw=99: function randomFloat () { // note that in fuzz-testing, this can used as the size of a buffer to allocate. // so it shouldn't return astronomic values. The maximum value 10000000 is already quite big. var fac = 1.0; var r = Math.random(); if (r < 0.25)
fac = 10; elseif (r < 0.7)
fac = 10000000; elseif (r < 0.8)
fac = NaN; return -0.5*fac + Math.random() * fac;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.