14 November 2006 07:32:49 AM LATIN_CENTER_PRB: Test the C++ Latin Center Square routines. TEST00 GET_SEED returns a seed for the random number generator, based on the current time. GET_SEED returns SEED = 1171671054 TEST01 LATIN_CENTER chooses a Latin cell arrangement, and returns the centers of those cells. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 1171671054 The Latin centers: 0.95 0.35 0.85 0.25 0.45 0.95 0.65 0.45 0.75 0.55 0.15 0.15 0.35 0.65 0.55 0.05 0.05 0.75 0.25 0.85 LATIN_CENTER_PRB: Repeat TEST01, but with different seed from first run. TEST01 LATIN_CENTER chooses a Latin cell arrangement, and returns the centers of those cells. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 1900718290 The Latin centers: 0.75 0.95 0.05 0.55 0.95 0.75 0.65 0.85 0.35 0.25 0.45 0.35 0.15 0.15 0.25 0.45 0.55 0.65 0.85 0.05 LATIN_CENTER_PRB: Repeat TEST01 with same seed as first run. TEST01 LATIN_CENTER chooses a Latin cell arrangement, and returns the centers of those cells. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 1171671054 The Latin centers: 0.95 0.35 0.85 0.25 0.45 0.95 0.65 0.45 0.75 0.55 0.15 0.15 0.35 0.65 0.55 0.05 0.05 0.75 0.25 0.85 LATIN_CENTER_PRB: Normal end of execution. 14 November 2006 07:32:49 AM