English Français

Documentation / Developer's manual

Available modules

Calibration,  DataServer,  Launcher,  MetaModelOptim,  Modeler,  Optimizer,  ReLauncher,  Reliability,  ReOptimizer,  Sampler,  Sensitivity,  UncertModeler,  XmlProblem,   Uranie / ReOptimizer: TNloptCobyla.h Source File
Uranie / ReOptimizer v4.9.0
/* @license-end */
TNloptCobyla.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.3 $
22// $State$
24
32#ifndef __NLOPT_COBYLA__
33#define __NLOPT_COBYLA__
34
35#include "TNlopt.h"
36
37namespace URANIE
38{
39namespace Reoptimizer
40{
41
43{
44public:
46 virtual ~TNloptCobyla();
47
48 virtual nlopt_opt build(int, int, int, double, nlopt_opt*);
49
50 ClassDef(URANIE::Reoptimizer::TNloptCobyla, ID_REOPTIMIZER)
51};
52
54{
55public:
57 virtual ~TNloptSLSQP();
58
59 virtual nlopt_opt build(int, int, int, double, nlopt_opt*);
60
61 ClassDef(URANIE::Reoptimizer::TNloptSLSQP, ID_REOPTIMIZER)
62};
63
65{
66public:
67 TNloptMMA();
68 virtual ~TNloptMMA();
69
70 virtual nlopt_opt build(int, int, int, double, nlopt_opt*);
71
72 ClassDef(URANIE::Reoptimizer::TNloptMMA, ID_REOPTIMIZER)
73};
74
75}
76} //namespace
77
78#endif
struct nlopt_opt_s * nlopt_opt
Definition TNloptShare.h:52
interface algorithme optimisation de la bibliotheque NLOpt
Definition TNloptCobyla.h:43
virtual nlopt_opt build(int, int, int, double, nlopt_opt *)
Definition TNloptCobyla.cxx:53
virtual ~TNloptCobyla()
Definition TNloptCobyla.cxx:49
TNloptCobyla()
Definition TNloptCobyla.cxx:46
Definition TNloptCobyla.h:65
TNloptMMA()
Definition TNloptCobyla.cxx:88
virtual nlopt_opt build(int, int, int, double, nlopt_opt *)
Definition TNloptCobyla.cxx:95
virtual ~TNloptMMA()
Definition TNloptCobyla.cxx:91
Definition TNloptCobyla.h:54
virtual ~TNloptSLSQP()
Definition TNloptCobyla.cxx:70
TNloptSLSQP()
Definition TNloptCobyla.cxx:67
virtual nlopt_opt build(int, int, int, double, nlopt_opt *)
Definition TNloptCobyla.cxx:74
Definition TNloptShare.h:62
Definition TCMAES.h:70