Changeset 3fe8ed4 in git
- Timestamp:
- Oct 27, 2008, 11:16:09 AM (15 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 3425c28defd1e45c8aacb598a943c2dfd616390f
- Parents:
- ad83e4fe7101dbe0763a36ab0bf774daa8c9e7db
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_eval.h
rad83e4 r3fe8ed4 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_eval.h,v 1. 5 2006-05-15 09:03:04Singular Exp $ */2 /* $Id: cf_eval.h,v 1.6 2008-10-27 10:16:09 Singular Exp $ */ 3 3 4 4 #ifndef INCL_CF_EVAL_H … … 27 27 public: 28 28 Evaluation() : values() {} 29 Evaluation( int min , int max ) : values( min, max) {}29 Evaluation( int min0, int max0 ) : values( min0, max0 ) {} 30 30 Evaluation( const Evaluation & e ) : values( e.values ) {} 31 31 virtual ~Evaluation() {} -
factory/cf_reval.h
rad83e4 r3fe8ed4 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_reval.h,v 1. 6 2007-11-20 10:08:03Singular Exp $ */2 /* $Id: cf_reval.h,v 1.7 2008-10-27 10:16:09 Singular Exp $ */ 3 3 4 4 #ifndef INCL_CF_REVAL_H … … 19 19 public: 20 20 REvaluation() : Evaluation(), gen(0) {} 21 REvaluation( int min , int max, const CFRandom & sample ) : Evaluation( min, max), gen( sample.clone() ) {}21 REvaluation( int min0, int max0, const CFRandom & sample ) : Evaluation( min0, max0 ), gen( sample.clone() ) {} 22 22 REvaluation( const REvaluation & e ); 23 23 ~REvaluation();
Note: See TracChangeset
for help on using the changeset viewer.