Changeset 810 for library/tests/testsuite
- Timestamp:
- 02/21/10 20:58:41 (15 years ago)
- Location:
- library/tests/testsuite
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/testsuite/egiw.cfg
r730 r810 45 45 }; 46 46 tolerance = 0.01; 47 } ); 47 }, 48 { 49 class = "epdf_harness"; 50 epdf = { 51 class = "egiw"; 52 V = ( "matrix", 2, 2, [ 10.0, 5.0, 5.0, 15.0 ] ); 53 nu = 10.0; 54 dimx = 2; 55 rv : 56 { 57 class = "RV"; 58 names = ( "a", "b" ); 59 }; 60 }; 61 mean = [1.0, 0.5, 0.5, 1.5]; 62 variance = [1.0, 1.0]; 63 R = ( "matrix", 2, 2, [ 1.0, 0.0, 0.0, 1.0 ] ); 64 support = { 65 class = "rectangular_support"; 66 ranges = ( [ 0.0, 4.0 ], [-2.0, 2.0], [-2.0, 2.0], [0.0, 4.0 ] ); 67 gridsizes = [ 10, 10, 10, 10]; 68 }; 69 tolerance = 0.01; 70 }); 48 71 49 72 -
library/tests/testsuite/enorm.cfg
r730 r810 103 103 class = "enorm<chmat>"; 104 104 mu = ( "matrix", 1, 2, [ 0.0, 2.0 ] ); 105 R = ( "matrix", 2, 2, [ 2.0, 0.0, 0.0, 0.5 ] );105 R = ( "matrix", 2, 2, [ 1.0, 0.3, 0.3, 0.5 ] ); 106 106 rv : 107 107 { … … 111 111 }; 112 112 mean = [ 0.0, 2.0 ]; 113 variance = [ 2.0, 0.5 ]; 114 R = ( "matrix", 2, 2, [ 2.0, 0.0, 0.0, 0.5 ] ); 115 tolerance = 0.5; 113 variance = [ 1.0, 0.5 ]; 114 R = ( "matrix", 2, 2, [ 1.0, 0.3, 0.3, 0.5 ] ); 116 115 } ); 117 116