⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_powell.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
//: \file
//  \author Kevin de Souza
//  \brief Program to test operation of vnl_powell minimizer.
//  \note Adapted from test_amoeba.cxx

#include <vcl_iostream.h>
#include <vcl_cassert.h>
#include <vcl_cmath.h>

#include <vnl/vnl_vector.h>
#include <vnl/vnl_double_2.h>
#include <vnl/algo/vnl_powell.h>
#include <vnl/vnl_cost_function.h>

#include <testlib/testlib_test.h>


//-------------------------------------------------------------------------
// nD quadratic function with minimum at min{x[i]} = i;
//-------------------------------------------------------------------------
class vnl_test_powell_quadratic : public vnl_cost_function 
{
 public:
  vnl_test_powell_quadratic(int n) : vnl_cost_function(n) {}

  double f(const vnl_vector<double>& x) 
  {
    assert((int)x.size()==dim);
    double sum = 0;
    for (unsigned int i=0; i<x.size(); ++i) 
      sum += (x[i]-i)*(x[i]-i);
    return sum;
  }
};


//-------------------------------------------------------------------------
// Function f(x,y) = (10*(y - x^2))^2 + (1-x)^2.
// Minimum at (1,1).
//-------------------------------------------------------------------------
class vnl_test_powell_rosenbrock : public vnl_cost_function
{
 public:
  vnl_test_powell_rosenbrock() : vnl_cost_function(2) {}

  double f(const vnl_vector<double>& x) 
  {
    double a = 10*(x[1] - x[0]*x[0]);
    double b = 1 - x[0];
    return a*a + b*b;
  }

  void gradf(const vnl_vector<double>& x, vnl_vector<double>& g) 
  {
    double a = 10*(x[1] - x[0]*x[0]);
    double b = 1 - x[0];
    g[0] = 2 * a * (-20*x[0]) - 2 * b;
    g[1] = 20 * a;
  }
};


//-------------------------------------------------------------------------
// Test 2D quadratic function
//-------------------------------------------------------------------------
static void test_quadratic_2d()
{
  vcl_cout << "---------------------\n"
           << " test_quadratic_2d()\n"
           << "---------------------\n";

  // No. of dimensions
  const unsigned n = 2;

  // Start at (1,...,1)
  {
    vnl_vector<double> x(n);
    x.fill(1);
    vnl_test_powell_quadratic cost1(n);
    vnl_powell powell(&cost1);
    powell.minimize(x);

    double err=0;
    for (unsigned i=0; i<n; ++i) err += vcl_fabs(x[i]-i);
    TEST_NEAR("Starting at (1,1,1...)", err, 0.0, 1e-5);
    vcl_cout<<"Number of evaluations: "<<powell.get_num_evaluations()<<vcl_endl;
  }

  // Start at x[i]=n-i
  {
    vnl_vector<double> x(n);
    for (unsigned i=0; i<n; ++i) x[i] = static_cast<int>(n) - static_cast<int>(i);
    vnl_test_powell_quadratic cost1(n);
    vnl_powell powell(&cost1);
    powell.minimize(x);

    double err=0;
    for (unsigned i=0; i<n; ++i) err += vcl_fabs(x[i]-i);
    TEST_NEAR("Starting at (1,1,1...)", err, 0.0, 1e-5);
    vcl_cout<<"Number of evaluations: "<<powell.get_num_evaluations()<<vcl_endl;
  }
  vcl_cout << vcl_endl;
}


//-------------------------------------------------------------------------
// Test quadratic functions with various numbers of dimensions
//-------------------------------------------------------------------------
static void test_quadratic_nd()
{
  // Max. no. of dimensions
  const unsigned max_n = 16;
  for (unsigned n=1; n<max_n; ++n)
  {
    vcl_cout << "-------------------\n"
             << " test_quadratic_" << n << "d\n"
             << "-------------------\n";

    // Start at (1,1,...,1)
    vnl_vector<double> x(n);
    x.fill(1);
    vnl_test_powell_quadratic cost1(n);
    vnl_powell powell(&cost1);
    powell.minimize(x);

    double err=0;
    for (unsigned i=0; i<n; ++i) err+=vcl_fabs(x[i]-i);
    TEST_NEAR("Starting at (1,1,1...)", err, 0.0, 1e-5);
    vcl_cout << "Number of evaluations: " << powell.get_num_evaluations()
             << vcl_endl << vcl_endl;
  }
}


//-------------------------------------------------------------------------
// Test rosenbrock 2d function
//-------------------------------------------------------------------------
static void test_rosenbrock_2d()
{
  vcl_cout << "----------------------\n"
           << " test_rosenbrock_2d()\n"
           << "----------------------\n";
  vnl_test_powell_rosenbrock c;
  vnl_double_2 xmin(1.0, 1.0); // true minimum
  vnl_powell powell(&c);
  vnl_double_2 x0(-2, 2);   // initial x
  vnl_vector<double> x = x0.as_vector();

  powell.minimize(x);
  double r = (x-xmin).magnitude();
  TEST_NEAR("test_rosenbrock_2d", r, 0, 1e-6);
  vcl_cout << "Number of evaluations: " << powell.get_num_evaluations()
           << vcl_endl << vcl_endl;
}


//-------------------------------------------------------------------------
// Main test function
//-------------------------------------------------------------------------
void test_powell()
{
#if NUMERICAL_RECIPES_CODE_HAS_BEEN_REMOVED
  test_quadratic_2d();
  test_quadratic_nd();
  test_rosenbrock_2d();
#else
  vcl_cout<<"test_powell has been removed until Numerical Recipes code is removed."<<vcl_endl;
#endif
}


TESTMAIN(test_powell);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -