14 November 2006 07:43:06 AM LATIN_RANDOM_PRB: Test the C++ Latin Random Square routines. TEST00 GET_SEED returns a seed for the random number generator, based on the current time. GET_SEED returns SEED = 1202342290 TEST01 LATIN_RANDOM chooses a Latin Square cell arrangement, and then chooses a random point from each cell. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 1202342290 The Latin Random Square points: 0.906892 0.425568 0.515538 0.0541721 0.270658 0.746804 0.838352 0.183796 0.655048 0.392679 0.596564 0.746894 0.641953 0.8105 0.973988 0.0101592 0.145623 0.385884 0.259862 0.498581 LATIN_RANDOM_PRB: Repeat TEST01, but with different seed from first run. TEST01 LATIN_RANDOM chooses a Latin Square cell arrangement, and then chooses a random point from each cell. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 2117001039 The Latin Random Square points: 0.450469 0.234147 0.309287 0.890706 0.0935899 0.964904 0.741573 0.520741 0.601697 0.127588 0.696995 0.0937899 0.827571 0.383474 0.145628 0.275269 0.75294 0.566965 0.986342 0.451303 LATIN_PRB: Repeat TEST01 with same seed as first run. TEST01 LATIN_RANDOM chooses a Latin Square cell arrangement, and then chooses a random point from each cell. Spatial dimension = 2 Number of points = 10 Initial seed for UNIFORM = 1202342290 The Latin Random Square points: 0.906892 0.425568 0.515538 0.0541721 0.270658 0.746804 0.838352 0.183796 0.655048 0.392679 0.596564 0.746894 0.641953 0.8105 0.973988 0.0101592 0.145623 0.385884 0.259862 0.498581 LATIN_RANDOM_PRB: Normal end of execution. 14 November 2006 07:43:06 AM