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.9.0
/* @license-end */
TVizirEval.h
Go to the documentation of this file.
1
2// 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
41struct vzrfitnessbuild;
42struct vzrfitness;
43
44namespace URANIE
45{
46namespace Reoptimizer
47{
48
49class TVizirEval: public URANIE::Relauncher::TDoubleEval
50{
51protected:
52 struct vzrfitnessbuild *_build;
53 struct vzrfitness *_fit;
54
55public:
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
Definition TVizirEval.h:50
virtual URANIE::Relauncher::TEval * rebuild(int rank, Bool_t chef=kTRUE)
Definition TVizirEval.cxx:64
virtual ~TVizirEval()
Definition TVizirEval.cxx:51
struct vzrfitness * _fit
Definition TVizirEval.h:53
virtual Int_t eval(Double_t *in, Double_t *out, int=0)
Definition TVizirEval.cxx:77
void buildVizir()
Definition TVizirEval.cxx:59
struct vzrfitnessbuild * _build
Definition TVizirEval.h:52
Definition TCMAES.h:70