diff options
author | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-01-06 10:04:28 +0000 |
---|---|---|
committer | astrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675> | 2011-01-06 10:04:28 +0000 |
commit | 22993972e31c556ca36bb6258e040b6a790cd862 (patch) | |
tree | 10a5228f2df6cfee6d651f78518e70901ba0fc8f /example/test_fitter.cpp | |
parent | 9c7cbb016df1279fa7759b636171600ce77e82fa (diff) | |
download | opt-utilities-22993972e31c556ca36bb6258e040b6a790cd862.tar.bz2 |
git-svn-id: file:///home/svn/opt_utilities@157 ed2142bd-67ad-457f-ba7c-d818d4011675
Diffstat (limited to 'example/test_fitter.cpp')
-rw-r--r-- | example/test_fitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/test_fitter.cpp b/example/test_fitter.cpp index a658a6c..718d029 100644 --- a/example/test_fitter.cpp +++ b/example/test_fitter.cpp @@ -44,8 +44,8 @@ int main() { fitter<double,double,std::vector<double>,double,std::string> f; f.set_model(lin1d()); - //f.set_method(powell_method<double,std::vector<double> >()); - f.set_opt_method(aga_method<double,std::vector<double> >()); + f.set_opt_method(powell_method<double,std::vector<double> >()); + //f.set_opt_method(aga_method<double,std::vector<double> >()); default_data_set<double,double> ds; for(int i=0;i<100;++i) |