diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-08-22 16:48:40 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2009-08-22 16:48:40 +0000 |
commit | b5742a78297257d18959385e7a88a1f230bdcafe (patch) | |
tree | 5a07e2eef93bdfeef20d3b699bef908236b12662 /data_sets | |
parent | 4e6cebbb431222a5d8fa3bc62d5de44c93c8a93e (diff) | |
download | opt-utilities-b5742a78297257d18959385e7a88a1f230bdcafe.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@49 ed2142bd-67ad-457f-ba7c-d818d4011675
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> |