diff options
Diffstat (limited to 'data_sets')
-rw-r--r-- | data_sets/default_data_set.hpp | 9 | ||||
-rw-r--r-- | data_sets/sorted_data_set.hpp | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/data_sets/default_data_set.hpp b/data_sets/default_data_set.hpp index 4d0b89e..7d63fb9 100644 --- a/data_sets/default_data_set.hpp +++ b/data_sets/default_data_set.hpp @@ -1,3 +1,7 @@ +/** + \file default_data_set.hpp + */ + #ifndef DEFAULT_DATA_SET #define DEFAULT_DATA_SET #include "core/fitter.hpp" @@ -7,6 +11,11 @@ namespace opt_utilities { + /** + default implement of the data set + \tparam Ty type of y + \tparam Tx type of x + */ template <typename Ty,typename Tx> class default_data_set :public data_set<Ty,Tx> diff --git a/data_sets/sorted_data_set.hpp b/data_sets/sorted_data_set.hpp index 0512f18..868f293 100644 --- a/data_sets/sorted_data_set.hpp +++ b/data_sets/sorted_data_set.hpp @@ -1,3 +1,7 @@ +/** + \file sorted_data_set.hpp +*/ + #ifndef SORTED_DATA_SET #define SORTED_DATA_SET #include "core/fitter.hpp" @@ -14,6 +18,12 @@ namespace opt_utilities } + + /** + automatically sorting data set + \tparam Ty type of y + \tparam Tx type of x + */ template <typename Ty,typename Tx> class sorted_data_set :public data_set<Ty,Tx> |