This archive contains sources of "dmt" - program simplifying making of 
multiple tests of chosen PRNG algorithm using DIEHARD 
(http://stat.fsu.edu/~geo/diehard.html) test suite. To recompile the program 
does something like this:

	"gcc -O2 -Wall -o dmt main.c parser.c stat.c seed_gen.c"

And run it with just: "./dmt". "dmt" will look for "diequick" in the current 
directory, so you must copy "diequick" there (suggested) or must
modify appropriate source file. Also you must create the following three 
subdirs (with such rights that "dmt" to be able to write in them) in the 
current dir:

	"seed_dir", "output_dir" and "dq_out"

If you decide to test another one algorithm than SN3, take a look in 
"control.h" - all important defines which you need are there - pay 
attention to first three, at least. You must give implementation of 
DO_ALGORITHM_FUNC - in our case this is "do_sn3() - main.c" and, of 
course, of the algorithm core function - "sn3() - main.c". Note, that "dmt" 
will write overall statistics, which it computes, on stdout. Approximate 
execution time for 100 "diequick" tests is about 1.5 hours on Intel 733MHz 
machine. Program is written in ANSI C and must be able to recompile on 
any POSIX compliant OS. If there are some compilation problems, please 
notify me at smaltchev@yahoo.com.
