PaGMO  1.1.5
problems.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_PROBLEMS_H
26 #define PAGMO_PROBLEMS_H
27 
28 // Header including all problems implemented in PaGMO.
29 
30 #include "problem/ackley.h"
31 #include "problem/base.h"
32 #include "problem/base_stochastic.h"
33 #include "problem/base_dtlz.h"
34 #include "problem/base_unc_mo.h"
35 #include "problem/branin.h"
36 #include "problem/bukin_f6.h"
37 #include "problem/cec2006.h"
38 #include "problem/cec2009.h"
39 #include "problem/cec2013.h"
40 #include "problem/con2mo.h"
41 #include "problem/dejong.h"
42 #include "problem/dtlz.h"
43 #include "problem/golomb_ruler.h"
44 #include "problem/griewank.h"
45 #include "problem/himmelblau.h"
46 #include "problem/identity.h"
47 #include "problem/inventory.h"
48 #include "problem/luksan_vlcek_1.h"
49 #include "problem/luksan_vlcek_2.h"
50 #include "problem/luksan_vlcek_3.h"
51 #include "problem/lennard_jones.h"
52 #include "problem/lavor_maculan.h"
53 #include "problem/levy5.h"
54 #include "problem/michalewicz.h"
55 #include "problem/rastrigin.h"
56 #include "problem/rosenbrock.h"
57 #include "problem/schwefel.h"
58 #include "problem/sch.h"
59 #include "problem/snopt_toyprob.h"
60 #include "problem/string_match.h"
61 #include "problem/tsp.h"
62 #include "problem/tsp_vrplc.h"
63 #include "problem/tsp_cs.h"
64 #include "problem/fon.h"
65 #include "problem/pol.h"
66 #include "problem/kur.h"
67 #include "problem/zdt.h"
68 #include "problem/pressure_vessel.h"
69 #include "problem/tens_comp_string.h"
70 #include "problem/welded_beam.h"
71 #include "problem/death_penalty.h"
72 #include "problem/cstrs_co_evolution.h"
73 #include "problem/cstrs_self_adaptive.h"
74 #include "problem/antibodies_problem.h"
75 #include "problem/shifted.h"
76 #include "problem/scaled.h"
77 #include "problem/rotated.h"
78 #include "problem/normalized.h"
79 #include "problem/decompose.h"
80 #include "problem/noisy.h"
81 #include "problem/robust.h"
82 #include "problem/con2uncon.h"
83 
84 // GSL problems.
85 #ifdef PAGMO_ENABLE_GSL
86  #include "problem/spheres.h"
87 // #include "problem/spheres_q.h"
88 #endif
89 
90 #ifdef PAGMO_ENABLE_KEP_TOOLBOX
91  #include "problem/cassini_1.h"
92  #include "problem/cassini_2.h"
93  #include "problem/gtoc_1.h"
94  #include "problem/gtoc_2.h"
95  #include "problem/sagas.h"
96  #include "problem/rosetta.h"
97  #include "problem/messenger.h"
98  #include "problem/messenger_full.h"
99  #include "problem/tandem.h"
100  #include "problem/laplace.h"
101 // #include "problem/sample_return.h"
102 // #include "problem/gtoc5_flyby.h"
103 // #include "problem/gtoc5_launch.h"
104 // #include "problem/gtoc5_rendezvous.h"
105 // #include "problem/gtoc5_self_flyby.h"
106 // #include "problem/earth_planet.h"
107  #include "problem/mga_1dsm_alpha.h"
108  #include "problem/mga_1dsm_tof.h"
109  #include "problem/mga_incipit.h"
110  #include "problem/mga_incipit_cstrs.h"
111  #include "problem/mga_part.h"
112  #include "problem/mga_target_event.h"
113  #include "problem/tsp_ds.h"
114 #endif
115 
116 #endif