source: git/factory/cf_reval.h @ 386b3d

spielwiese
Last change on this file since 386b3d was 362fc67, checked in by Martin Lee <martinlee84@…>, 12 years ago
chg: remove $Id$
  • Property mode set to 100644
File size: 696 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3#ifndef INCL_CF_REVAL_H
4#define INCL_CF_REVAL_H
5
6// #include "config.h"
7
8#include "canonicalform.h"
9#include "cf_eval.h"
10#include "cf_random.h"
11
12/*BEGINPUBLIC*/
13
14class REvaluation : public Evaluation
15{
16protected: // neeeded in FFREvaluation
17    CFRandom * gen;
18public:
19    REvaluation() : Evaluation(), gen(0) {}
20    REvaluation( int min0, int max0, const CFRandom & sample ) : Evaluation( min0, max0 ), gen( sample.clone() ) {}
21    REvaluation( const REvaluation & e );
22    ~REvaluation();
23    REvaluation& operator= ( const REvaluation & e );
24    void nextpoint();
25    void nextpoint(int n);
26};
27
28/*ENDPUBLIC*/
29
30#endif /* ! INCL_CF_REVAL_H */
Note: See TracBrowser for help on using the repository browser.