Show
Ignore:
Timestamp:
08/06/09 13:38:17 (15 years ago)
Author:
vbarta
Message:

doubled tolerance computed from variance, repeating failing tests (at most) 3 times; epdf tests pass

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/epdf_harness.h

    r477 r481  
    2121#include "base/bdmbase.h" 
    2222#include "base/user_info.h" 
     23#include "stat/emix.h" 
    2324 
    2425namespace bdm { 
     
    5354                return tolerance; 
    5455        } 
     56 
     57private: 
     58        // assumes support is valid 
     59        void check_support_mean(); 
     60 
     61        // assumes support is valid 
     62        void check_support_integral(); 
     63 
     64        // assumes R is valid - it probably shouldn't, but calling it 
     65        // unconditionally leads to a lot of not implemented 
     66        // functions... 
     67        void check_sample_mean(); 
     68 
     69        // assumes R is valid 
     70        void check_covariance(); 
     71 
     72        // assumes marginal_rv is valid 
     73        void check_cond_mean( mprod &mep ); 
     74 
     75        // assumes marginal_rv and R are valid 
     76        void check_cond_covariance( mprod &mep ); 
    5577}; 
    5678