25 #ifndef PAGMO_ALGORITHMS_H
26 #define PAGMO_ALGORITHMS_H
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"
65 #include "algorithm/mbh.h"
66 #include "algorithm/ms.h"
67 #include "algorithm/cstrs_self_adaptive.h"
70 #ifdef PAGMO_ENABLE_SNOPT
71 #include "algorithm/snopt.h"
75 #ifdef PAGMO_ENABLE_IPOPT
76 #include "algorithm/ipopt.h"
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"
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"
102 #ifdef PAGMO_ENABLE_WORHP
103 #include "algorithm/worhp.h"