# include # include # include # include # include "asa032.hpp" using namespace std; int main ( void ); void test01 ( void ); //****************************************************************************80 int main ( void ) //****************************************************************************80 // // Purpose: // // MAIN is the main program for ASA032_TEST. // // Discussion: // // ASA032_TEST tests the ASA032 library. // // Licensing: // // This code is distributed under the GNU LGPL license. // // Modified: // // 17 January 2008 // // Author: // // John Burkardt // { timestamp ( ); cout << "\n"; cout << "ASA032_TEST:\n"; cout << " C++ version\n"; cout << " Test the ASA032 library.\n"; test01 ( ); // // Terminate. // cout << "\n"; cout << "ASA032_TEST:\n"; cout << " Normal end of execution.\n"; cout << "\n"; timestamp ( ); return 0; } //****************************************************************************80 void test01 ( void ) //****************************************************************************80 // // Purpose: // // TEST01 demonstrates the use of ALNGAM. // // Licensing: // // This code is distributed under the GNU LGPL license. // // Modified: // // 17 January 2008 // // Author: // // John Burkardt // { double a; double fx; double fx2; int ifault; int n_data; double x; cout << "\n"; cout << "TEST01:\n"; cout << " GAMAIN computes the incomplete Gamma function.\n"; cout << " Compare the result to tabulated values.\n"; cout << "\n"; cout << " A X " << "FX FX2\n"; cout << " " << "(Tabulated) (GAMAIN) DIFF\n"; cout << "\n"; n_data = 0; for ( ; ; ) { gamma_inc_values ( &n_data, &a, &x, &fx ); if ( n_data == 0 ) { break; } fx2 = gamain ( x, a, &ifault ); cout << " " << setprecision(8) << setw(12) << a << " " << setprecision(8) << setw(12) << x << " " << setprecision(16) << setw(24) << fx << " " << setprecision(16) << setw(24) << fx2 << " " << setprecision(4) << setw(10) << fabs ( fx - fx2 ) << "\n"; } return; }