source: git/factory/cf_reval.h @ 3fe8ed4

spielwiese
Last change on this file since 3fe8ed4 was 3fe8ed4, checked in by Hans Schönemann <hannes@…>, 15 years ago
*grayson: avoid compiler warnings about shadowing a global symbol git-svn-id: file:///usr/local/Singular/svn/trunk@11160 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 729 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: cf_reval.h,v 1.7 2008-10-27 10:16:09 Singular Exp $ */
3
4#ifndef INCL_CF_REVAL_H
5#define INCL_CF_REVAL_H
6
7#include <config.h>
8
9#include "canonicalform.h"
10#include "cf_eval.h"
11#include "cf_random.h"
12
13/*BEGINPUBLIC*/
14
15class REvaluation : public Evaluation
16{
17protected: // neeeded in FFREvaluation
18    CFRandom * gen;
19public:
20    REvaluation() : Evaluation(), gen(0) {}
21    REvaluation( int min0, int max0, const CFRandom & sample ) : Evaluation( min0, max0 ), gen( sample.clone() ) {}
22    REvaluation( const REvaluation & e );
23    ~REvaluation();
24    REvaluation& operator= ( const REvaluation & e );
25    void nextpoint();
26};
27
28/*ENDPUBLIC*/
29
30#endif /* ! INCL_CF_REVAL_H */
Note: See TracBrowser for help on using the repository browser.