00001 
00013 #ifndef TEST_UTIL_H
00014 #define TEST_UTIL_H
00015 
00016 #include <string>
00017 #include "itpp_ext.h"
00018 
00019 namespace bdm {
00020 
00021 class epdf;
00022 
00028 std::string load_test_file(const char *fname);
00029 
00037 bool remove_all(const char *path);
00038 
00039 double normcoef(const epdf *ep, const itpp::vec &xb, const itpp::vec &yb,
00040                 int xn = 100, int yn = 100);
00041 
00042 itpp::vec num_mean2(const epdf *ep, const itpp::vec &xb, const itpp::vec &yb,
00043                     int xn = 100, int yn = 100);
00044 
00045 }
00046 
00047 #endif