From f11adda11d1275bcff45b20c15194d7a76bb6b59 Mon Sep 17 00:00:00 2001 From: astrojhgu Date: Sun, 23 Aug 2009 13:08:26 +0000 Subject: git-svn-id: file:///home/svn/opt_utilities@54 ed2142bd-67ad-457f-ba7c-d818d4011675 --- methods/aga/aga.hpp | 10 +++++----- methods/powell/bas_util.hpp | 17 +++++++++-------- 2 files changed, 14 insertions(+), 13 deletions(-) (limited to 'methods') diff --git a/methods/aga/aga.hpp b/methods/aga/aga.hpp index f87d215..577e526 100644 --- a/methods/aga/aga.hpp +++ b/methods/aga/aga.hpp @@ -146,7 +146,6 @@ namespace opt_utilities uni_rand(get_element(lower_bound,j), get_element(upper_bound,j)) ); - } } @@ -186,7 +185,7 @@ namespace opt_utilities sum+=samples[i].v; } - std::sort(samples.begin(),samples.end(),vp_comp >()); + std::sort(samples.begin(),samples.end(),vp_comp()); if(sum2/samples.size()-pow(sum/samples.size(),2)p; } diff --git a/methods/powell/bas_util.hpp b/methods/powell/bas_util.hpp index 743dc3c..6a53f0a 100644 --- a/methods/powell/bas_util.hpp +++ b/methods/powell/bas_util.hpp @@ -1,6 +1,7 @@ #ifndef BAS_UTIL #define BAS_UTIL #include +#include namespace opt_utilities { template @@ -31,15 +32,15 @@ namespace opt_utilities opt_eq(b,c); opt_eq(c,d); } - template - void swap(T& ax,T& bx) - { + // template + // void swap(T& ax,T& bx) + //{ // swap(ax,bx); - T temp; - opt_eq(temp,ax); - opt_eq(ax,bx); - opt_eq(bx=temp); - } + // T temp; + //opt_eq(temp,ax); + //opt_eq(ax,bx); + //opt_eq(bx,temp); + //} template T sign(const T& a,const T& b) -- cgit v1.2.2