PaGMO  1.1.5
algorithms.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_ALGORITHMS_H
26 #define PAGMO_ALGORITHMS_H
27 
28 // Header including all algorithms implemented in PaGMO.
29 
30 // Heuristics
31 #include "algorithm/base.h"
32 #include "algorithm/cs.h"
33 #include "algorithm/de.h"
34 #include "algorithm/de_1220.h"
35 #include "algorithm/sea.h"
36 #include "algorithm/jde.h"
37 #include "algorithm/ihs.h"
38 #include "algorithm/mde_pbx.h"
39 #include "algorithm/monte_carlo.h"
40 #include "algorithm/null.h"
41 #include "algorithm/pso.h"
42 #include "algorithm/pso_generational.h"
43 #include "algorithm/pso_generational_racing.h"
44 #include "algorithm/sa_corana.h"
45 #include "algorithm/sga.h"
46 #include "algorithm/sga_gray.h"
47 #include "algorithm/nsga2.h"
48 #include "algorithm/bee_colony.h"
49 #include "algorithm/firefly.h"
50 #include "algorithm/cmaes.h"
51 #include "algorithm/nsga2.h"
52 #include "algorithm/vega.h"
53 #include "algorithm/cstrs_co_evolution.h"
54 #include "algorithm/pade.h"
55 #include "algorithm/moea_d.h"
56 #include "algorithm/cstrs_immune_system.h"
57 #include "algorithm/cstrs_core.h"
58 #include "algorithm/sms_emoa.h"
59 #include "algorithm/nspso.h"
60 #include "algorithm/spea2.h"
61 #include "algorithm/inverover.h"
62 #include "algorithm/nn_tsp.h"
63 
64 // Hyper-heuristics
65 #include "algorithm/mbh.h"
66 #include "algorithm/ms.h"
67 #include "algorithm/cstrs_self_adaptive.h"
68 
69 // SNOPT algorithm.
70 #ifdef PAGMO_ENABLE_SNOPT
71  #include "algorithm/snopt.h"
72 #endif
73 
74 // IPOPT algorithm.
75 #ifdef PAGMO_ENABLE_IPOPT
76  #include "algorithm/ipopt.h"
77 #endif
78 
79 // GSL algorithms.
80 #ifdef PAGMO_ENABLE_GSL
81  #include "algorithm/base_gsl.h"
82  #include "algorithm/gsl_bfgs.h"
83  #include "algorithm/gsl_bfgs2.h"
84  #include "algorithm/gsl_fr.h"
85  #include "algorithm/gsl_nm.h"
86  #include "algorithm/gsl_nm2.h"
87  #include "algorithm/gsl_nm2rand.h"
88  #include "algorithm/gsl_pr.h"
89 #endif
90 
91 // NLopt algorithms.
92 #ifdef PAGMO_ENABLE_NLOPT
93  #include "algorithm/nlopt_bobyqa.h"
94  #include "algorithm/nlopt_cobyla.h"
95  #include "algorithm/nlopt_sbplx.h"
96  #include "algorithm/nlopt_slsqp.h"
97  #include "algorithm/nlopt_mma.h"
98  #include "algorithm/nlopt_aug_lag.h"
99  #include "algorithm/nlopt_aug_lag_eq.h"
100 #endif
101 
102 #ifdef PAGMO_ENABLE_WORHP
103  #include "algorithm/worhp.h"
104 #endif
105 
106 #endif