root/library/tests/testsuite/pdf_test.cpp @ 717

Revision 717, 0.7 kB (checked in by mido, 15 years ago)

clean up of the whole tests directory has just started

  • Property svn:eol-style set to native
RevLine 
[447]1#include "base/bdmbase.h"
2#include "base/user_info.h"
[516]3#include "stat/emix.h"
[447]4#include "itpp_ext.h"
[717]5#include "../pdf_harness.h"
6#include "../mat_checks.h"
[447]7#include "UnitTest++.h"
8
9using namespace bdm;
10
[693]11static void check_mean(pdf &distrib_obj, const vec &mu0, int nsamples, const vec &mean, double tolerance);
[516]12
[524]13static void check_covariance(mmix &distrib_obj, const vec &mu0, int nsamples, const mat &R, double tolerance);
[516]14
[689]15TEST ( mgamma_test ) {
[693]16        pdf_harness::test_config ( "mgamma.cfg" );
[447]17}
[459]18
[689]19TEST ( mlnorm_test ) {
[693]20        pdf_harness::test_config ( "mlnorm.cfg" );
[459]21}
[505]22
[689]23TEST ( mprod_test ) {
[693]24        pdf_harness::test_config ( "mprod.cfg" );
[505]25}
[516]26
[689]27TEST ( mmix_test ) {
[713]28        pdf_harness::test_config ( "mmix.cfg" );
[516]29}
30
[713]31TEST ( emix_test ) {
32        pdf_harness::test_config ( "emix.cfg" );
[524]33}
Note: See TracBrowser for help on using the browser.