diff options
Diffstat (limited to 'utilities/opt_types.hpp')
-rw-r--r-- | utilities/opt_types.hpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/utilities/opt_types.hpp b/utilities/opt_types.hpp new file mode 100644 index 0000000..ebe56c7 --- /dev/null +++ b/utilities/opt_types.hpp @@ -0,0 +1,29 @@ +#ifndef OPT_TYPES_HPP +#define OPT_TYPES_HPP +#include <core/fitter.hpp> +#include <core/default_data_set.hpp> +#include <methods/powell/powell_method.hpp> +#include <statistics/chisq.hpp> +#include <vector> + +namespace opt_utilities +{ + template <typename Ty,typename Tx,typename Tp,typename Ts,typename Tstr> + class opt_types + { + public: + typedef fitter<Ty,Tx,Tp,Ts,Tstr> fitter; + typedef chisq<Ty,Tx,Tp,Ts,Tstr> chisq; + typedef powell_method<Ty,Tp> powell_method; + typedef model<Ty,Tx,Tp,Tstr> model; + typedef default_data_set<Ty,Ty> data_set; + }; + + typedef opt_types<double,double,std::vector<double>,double,std::string> dopt; +} + + + + +#endif +//EOF |