root/library/tests/generator.h @ 467

Revision 467, 0.6 kB (checked in by vbarta, 15 years ago)

added a program (square_mat_prep) to generate configurably random matrices, changed square_mat_stress to use the generated agenda

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 */
21class generator : public bdm::root
22{
23public:
24    generator();
25
26    //! Generates a matrix. Returned matrices should become
27    //! progressively more complicated.
28    virtual itpp::mat next() = 0;
29};
30
31#endif
Note: See TracBrowser for help on using the browser.