PaGMO  1.1.5
robust.h
1 /*****************************************************************************
2  * Copyright (C) 2004-2015 The PaGMO development team, *
3  * Advanced Concepts Team (ACT), European Space Agency (ESA) *
4  * *
5  * https://github.com/esa/pagmo *
6  * *
7  * act@esa.int *
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  * This program is distributed in the hope that it will be useful, *
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17  * GNU General Public License for more details. *
18  * *
19  * You should have received a copy of the GNU General Public License *
20  * along with this program; if not, write to the *
21  * Free Software Foundation, Inc., *
22  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
23  *****************************************************************************/
24 
25 #ifndef PAGMO_PROBLEM_ROBUST_H
26 #define PAGMO_PROBLEM_ROBUST_H
27 
28 #include <string>
29 #include <boost/functional/hash.hpp>
30 #include <boost/random/normal_distribution.hpp>
31 #include <boost/random/uniform_real_distribution.hpp>
32 
33 #include "../serialization.h"
34 #include "ackley.h"
35 #include "../types.h"
36 #include "base_stochastic.h"
37 
38 namespace pagmo{ namespace problem {
39 
41 
51 class __PAGMO_VISIBLE robust : public base_stochastic
52 {
53  public:
54 
55  //constructors
56  robust(const base & = ackley(1),
57  unsigned int trials = 1,
58  const double param_rho = 0.1,
59  unsigned int seed = 0u);
60 
61  //copy constructor
62  robust(const robust &);
63  base_ptr clone() const;
64  std::string get_name() const;
65 
66  void set_rho(double);
67  double get_rho() const;
68 
69  protected:
70  std::string human_readable_extra() const;
71  void objfun_impl(fitness_vector &, const decision_vector &) const;
72  void compute_constraints_impl(constraint_vector &, const decision_vector &) const;
73 
74  private:
75  void inject_noise_x(decision_vector &) const;
76 
77  friend class boost::serialization::access;
78  template <class Archive>
79  void serialize(Archive &ar, const unsigned int)
80  {
81  ar & boost::serialization::base_object<base_stochastic>(*this);
82  ar & m_original_problem;
83  ar & m_normal_dist;
84  ar & m_uniform_dist;
85  ar & m_trials;
86  ar & m_rho;
87  }
88 
89  base_ptr m_original_problem;
90  mutable boost::normal_distribution<double> m_normal_dist;
91  mutable boost::random::uniform_real_distribution<double> m_uniform_dist;
92  unsigned int m_trials;
93  double m_rho;
94 };
95 
96 }} //namespaces
97 
98 BOOST_CLASS_EXPORT_KEY(pagmo::problem::robust)
99 
100 #endif // PAGMO_PROBLEM_ROBUST_H
Root PaGMO namespace.
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base problem.
Definition: problem/base.h:62
std::vector< double > decision_vector
Decision vector type.
Definition: types.h:40
Base problem class.
Definition: problem/base.h:148
std::vector< double > fitness_vector
Fitness vector type.
Definition: types.h:42
Robust meta-problem.
Definition: robust.h:51
std::vector< double > constraint_vector
Constraint vector type.
Definition: types.h:44
Base Stochastic Optimization Problem.
The Ackley problem.
Definition: ackley.h:51