# include # include # include using namespace std; # include "disk01_monte_carlo.hpp" int main ( ); void test01 ( ); //****************************************************************************80 int main ( ) //****************************************************************************80 // // Purpose: // // disk01_monte_carlo_test() tests disk01_monte_carlo(). // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 03 January 2014 // // Author: // // John Burkardt // { timestamp ( ); cout << "\n"; cout << "DISK01_MONTE_CARLO_TEST\n"; cout << " C++ version\n"; cout << " Test the DISK01_MONTE_CARLO library.\n"; test01 ( ); /* Terminate. */ cout << "\n"; cout << "DISK01_MONTE_CARLO_TEST\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; } //****************************************************************************80 void test01 ( ) //****************************************************************************80 // // Purpose: // // TEST01 uses DISK01_SAMPLE with an increasing number of points. // // Licensing: // // This code is distributed under the MIT license. // // Modified: // // 03 January 2014 // // Author: // // John Burkardt // { int e[2]; int e_test[2*7] = { 0, 0, 2, 0, 0, 2, 4, 0, 2, 2, 0, 4, 6, 0 }; int i; int j; int n; double result[7]; int seed; double *value; double *x; cout << "\n"; cout << "TEST01\n"; cout << " Use DISK01_SAMPLE to estimate integrals in the unit disk.\n"; seed = 123456789; cout << "\n"; cout << " N 1 X^2 Y^2"; cout << " X^4 X^2Y^2 Y^4 X^6\n"; cout << "\n"; n = 1; while ( n <= 65536 ) { x = disk01_sample ( n, seed ); cout << " " << setw(8) << n; for ( j = 0; j < 7; j++ ) { for ( i = 0; i < 2; i++ ) { e[i] = e_test[i+j*2]; } value = monomial_value ( 2, n, e, x ); result[j] = disk01_area ( ) * r8vec_sum ( n, value ) / ( double ) ( n ); cout << " " << setw(14) << result[j]; delete [] value; } cout << "\n"; delete [] x; n = 2 * n; } cout << "\n"; cout << " Exact"; for ( j = 0; j < 7; j++ ) { for ( i = 0; i < 2; i++ ) { e[i] = e_test[i+j*2]; } result[j] = disk01_monomial_integral ( e ); cout << " " << setw(14) << result[j]; } cout << "\n"; return; }