2009-04-23 Jonathan Yu Updated MANIFEST file 2009-04-23 Jonathan Yu Bumped up version number 2009-04-23 Jonathan Yu - Rewrote docs a bit - Removed Pod::Usage dependency 2009-04-23 Jonathan Yu - Added some example files for benchmarking the module and charting out the distribution generated by the module :-) 2009-04-23 Jonathan Yu Added Config to META.yml prerequisites (why not?). It's a core module so it wouldn't be missing anyway, and Build.PL would fail outright if it was. 2009-04-20 Jonathan Yu - Add Build.PL detection of int size - Version bumped to 1.0.2 - A flag now controls whether 'int' or 'long' is used as the type: USE_INT. If Build.PL detects that int is 32bits wide, then it will use that type. Otherwise it'll use long, which is more portable. - A flag will control if the portability code is used. Right now this involves masking all numbers with "& 0xffffffff" to cut off the high bits - this code isn't necessary for 32-bit variable widths, so we might squeeze a bit more performance out this way 2009-04-07 Jonathan Yu - Changed the bootstrap loading to use VERSION instead of VERSION->numify, so that they match (prevents compile errors with "object version v1.0 does not match bootstrap parameter 1.000000" (apparently causes failures in 50% of machines so far) - Bumped version to 1.0.1 2009-04-06 Jonathan Yu Removed taintmode from Valgrind test; the module is not taint safe 2009-04-06 Jonathan Yu - Added an author test using Test::Valgrind 2009-04-06 Jonathan Yu - Moved memory to a test under 02, because it should only be run if 01compile passes 2009-04-06 Jonathan Yu - Added README and MANIFEST - Added svn:keywords to everything 2009-04-06 Jonathan Yu - Added a bunch of tests - Added a META.yml - Changed version number to 1.0 to prepare for release - Removed the test.pl file TODO: decide if the Pod Coverage test is really necessary 2009-04-06 Jonathan Yu - Changed type to simply unsigned long - Modified XS interface to specify irand instead of randInt, thus matching the Pure Perl interface - Cleaned up code by using 'ub4' again (this time defined as a long) - Defined cut() macro to deal with chopping off everything above 32 bits 2009-03-19 Jonathan Yu - Added a LICENSE file explaining the terms - Moved C/XS source files into the src/ directory 2009-03-17 Jonathan Yu - Moved Math::Random::ISAAC files into its own package, getting ready for future release as an XS module with a PurePerl counterpart 2009-03-15 Jonathan Yu - Added a test to check that the generated sequence is correct - Added a randInt method, which gets the next number in the sequence as an integer. - Added a rand method, which divides the number by UINT32_MAX (so as to return a number between (0,1] 2009-03-15 Jonathan Yu Fixed headers in rand.h and standard.h - the inclusion of stdio and stddef is unnecessary now (since there is no output from the C side) 2009-03-15 Jonathan Yu Updated types for ISAAC.xs 2009-03-15 Jonathan Yu Updated ISAAC to use stdint.h for standard integer sizes/types 2009-03-15 Jonathan Yu - Removed the ISAAC64 stuff; this belongs in a different module 2009-03-12 Jonathan Yu Uploaded the typemap file 2009-03-12 Jonathan Yu Added support for 64bit perls (not tested yet) 2009-03-08 Jonathan Yu Commit a basic bootloader module. TODO: figure out how to make an XS module fall back on Perl if necessary 2009-03-08 Jonathan Yu Initial commit of some very rough prototype XS code :-) 2009-03-08 Jonathan Yu Added a folder for Math::Random::ISAAC, a random number generator implementing the ISAAC algorithm ;; Local Variables: ;; coding: utf-8 ;; End: