|
Revision 1064, 0.6 kB
(checked in by mido, 15 years ago)
|
|
astyle applied all over the library
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file |
|---|
| 3 | \brief Stress test generation base. |
|---|
| 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 GENERATOR_H |
|---|
| 14 | #define GENERATOR_H |
|---|
| 15 | |
|---|
| 16 | #include "itpp_ext.h" |
|---|
| 17 | #include "bdmroot.h" |
|---|
| 18 | |
|---|
| 19 | /*! An input iterator over IT++ matrices. |
|---|
| 20 | */ |
|---|
| 21 | class generator : public bdm::root { |
|---|
| 22 | public: |
|---|
| 23 | generator(); |
|---|
| 24 | |
|---|
| 25 | //! Generates a matrix. Returned matrices should become |
|---|
| 26 | //! progressively more complicated. |
|---|
| 27 | virtual itpp::mat next() = 0; |
|---|
| 28 | }; |
|---|
| 29 | |
|---|
| 30 | #endif |
|---|