diff options
Diffstat (limited to 'methods')
-rw-r--r-- | methods/aga/aga.hpp | 4 | ||||
-rw-r--r-- | methods/gsl_simplex/gsl_simplex.hpp | 4 | ||||
-rw-r--r-- | methods/powell/powell_method.hpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/methods/aga/aga.hpp b/methods/aga/aga.hpp index 81c53df..f87d215 100644 --- a/methods/aga/aga.hpp +++ b/methods/aga/aga.hpp @@ -1,6 +1,6 @@ /** \file aga.hpp - asexual genetic algorithm method + \brief asexual genetic algorithm method */ #ifndef AGA_METHOD @@ -44,7 +44,7 @@ namespace opt_utilities /** - Implement of the asexual genetic algorithm + \brief Implement of the asexual genetic algorithm 2009A&A...501.1259C http://adsabs.harvard.edu/abs/2009arXiv0905.3712C \tparam rT return type of the object function diff --git a/methods/gsl_simplex/gsl_simplex.hpp b/methods/gsl_simplex/gsl_simplex.hpp index d2071c8..4b9295f 100644 --- a/methods/gsl_simplex/gsl_simplex.hpp +++ b/methods/gsl_simplex/gsl_simplex.hpp @@ -19,7 +19,7 @@ namespace opt_utilities { /** - object function of the gsl simplex function + \brief object function of the gsl simplex function */ template <typename rT,typename pT> double gsl_func_adapter(const gsl_vector* v,void* params) @@ -35,7 +35,7 @@ namespace opt_utilities /** - wrapper for the gsl simplex optimization method + \brief wrapper for the gsl simplex optimization method \tparam return type of the object function \tparam param type of the object function */ diff --git a/methods/powell/powell_method.hpp b/methods/powell/powell_method.hpp index 6bb6519..eb5c498 100644 --- a/methods/powell/powell_method.hpp +++ b/methods/powell/powell_method.hpp @@ -16,7 +16,7 @@ namespace opt_utilities { /** - Impliment of an optimization method + \brief Impliment of an optimization method \tparam rT return type of the object function \tparam pT parameter type of the object function */ |