aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-09-07 16:27:34 +0000
committerastrojhgu <astrojhgu@ed2142bd-67ad-457f-ba7c-d818d4011675>2009-09-07 16:27:34 +0000
commit715792b078567650bc2d261e109d96cb2e356599 (patch)
tree180d0323c539be7cf48b4ff60843dbe9d3870d6d
parentd67964be5076b6464bfd7cb1ece694170278b3aa (diff)
downloadopt-utilities-715792b078567650bc2d261e109d96cb2e356599.tar.bz2
git-svn-id: file:///home/svn/opt_utilities@66 ed2142bd-67ad-457f-ba7c-d818d4011675
-rw-r--r--core/fitter.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fitter.hpp b/core/fitter.hpp
index d38b437..dd33138 100644
--- a/core/fitter.hpp
+++ b/core/fitter.hpp
@@ -979,7 +979,7 @@ namespace opt_utilities
if(rhs.p_statistic!=0)
{
set_statistic(*(rhs.p_statistic));
- assert(p_statistic->p_fitter!=0);
+ //assert(p_statistic->p_fitter!=0);
}
if(rhs.p_data_set!=0)
{
@@ -1264,7 +1264,7 @@ namespace opt_utilities
*/
opt_method<Ts,Tp>& get_opt_method()
{
- return optengine.method();
+ return optengine.get_opt_method();
}
/**
@@ -1273,7 +1273,7 @@ namespace opt_utilities
*/
const opt_method<Ts,Tp>& get_opt_method()const
{
- return optengine.method();
+ return optengine.get_opt_method();
}
public: