English Français

Documentation / Manuel développeur

Modules disponibles

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / ReOptimizer: TVizirEval.h Source File
Uranie / ReOptimizer  v4.10.0
/* @license-end */
TVizirEval.h
Go to the documentation of this file.
1 // Copyright (C) 2013-2024 CEA/DES
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Lesser General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or any
7 // later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 // $Id$
19 // $Author$
20 // $Date$
21 // $Revision 1.2 $
22 // $State$
24 
32 #ifndef __TVIZIREVAL__
33 #define __TVIZIREVAL__
34 
35 //ROOT
36 
37 //URANIE
38 #include "Reoptimizer.h"
39 #include "TStandardEval.h"
40 
41 struct vzrfitnessbuild;
42 struct vzrfitness;
43 
44 namespace URANIE
45 {
46 namespace Reoptimizer
47 {
48 
49 class TVizirEval: public URANIE::Relauncher::TDoubleEval
50 {
51 protected:
52  struct vzrfitnessbuild *_build;
53  struct vzrfitness *_fit;
54 
55 public:
56  TVizirEval(struct vzrfitnessbuild *);
57  virtual ~TVizirEval();
58  void buildVizir();
59  virtual URANIE::Relauncher::TEval *rebuild(int rank, Bool_t chef = kTRUE);
60  virtual Int_t eval(Double_t *in, Double_t *out, int=0);
61 
62  ClassDef(URANIE::Reoptimizer::TVizirEval, ID_REOPTIMIZER)
63 };
64 
65 }
66 } //namespace
67 
68 #endif
struct vzrfitness * _fit
Definition: TVizirEval.h:53
Definition: TCMAES.h:66
TVizirEval(struct vzrfitnessbuild *)
Definition: TVizirEval.cxx:44
Definition: TVizirEval.h:49
virtual ~TVizirEval()
Definition: TVizirEval.cxx:51
struct vzrfitnessbuild * _build
Definition: TVizirEval.h:52
virtual Int_t eval(Double_t *in, Double_t *out, int=0)
Definition: TVizirEval.cxx:77
virtual URANIE::Relauncher::TEval * rebuild(int rank, Bool_t chef=kTRUE)
Definition: TVizirEval.cxx:64
void buildVizir()
Definition: TVizirEval.cxx:59