diff options
Diffstat (limited to 'data_sets/sorted_data_set.hpp')
-rw-r--r-- | data_sets/sorted_data_set.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
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> |