root/library/tests/egiw_harness.h @ 477

Revision 477, 0.6 kB (checked in by mido, 15 years ago)

panove, vite, jak jsem peclivej na upravu kodu.. snad se vam bude libit:) konfigurace je v souboru /system/astylerc

RevLine 
[439]1/*!
2  \file
3  \brief Support for testing egiw.
4  \author Vaclav Barta.
5
6  -----------------------------------
7  BDM++ - C++ library for Bayesian Decision Making under Uncertainty
8
9  Using IT++ for numerical operations
10  -----------------------------------
11*/
12
13#ifndef EGIW_HARNESS_H
14#define EGIW_HARNESS_H
15
16#include "epdf_harness.h"
17
[477]18namespace bdm {
[439]19
[477]20class egiw_harness : public epdf_harness {
[439]21private:
[477]22        double lognc;
[439]23
24public:
[477]25        egiw_harness() : lognc ( 0 ) { }
[439]26
[477]27        void test ( const char *config_name, int idx );
[439]28
[477]29        void from_setting ( const Setting &set );
[439]30};
31
32}
33
34#endif
Note: See TracBrowser for help on using the browser.