NAG Library Manual, Mark 28.5
Interfaces:  FL   CL   CPP   AD 

NAG AD Library Introduction
Example description
/* G01HA_P0W_F C++ Header Example Program.
 *
 * Copyright 2022 Numerical Algorithms Group.
 * Mark 28.5, 2022.
 */

#include <dco.hpp>
#include <iostream>
#include <nag.h>
#include <nagad.h>
#include <stdio.h>
#include <string>
using namespace std;

int main()
{
  int exit_status = 0;

  // Input and output variables
  double x, y, rho, p;

  cout << "G01HA_P0W_F C++ Header Example Program Results\n\n";
  // Skip heading in data file
  string mystr;
  getline(cin, mystr);

  // Read number of x values
  Integer n;
  cin >> n;

  Integer           ifail = 0;
  nag::ad::handle_t ad_handle;

  cout << "       x           y         rho          p\n";
  cout.setf(ios::scientific, ios::floatfield);
  cout.setf(ios::right);
  cout.precision(4);

  // Loop over x values
  for (Integer i = 0; i < n; ++i)
  {
    // Read next x, y and rho
    cin >> x >> y >> rho;

    // Call NAG AD Routine
    ifail = 0;
    nag::ad::g01ha(ad_handle, x, y, rho, p, ifail);

    cout.width(12);
    cout << x;
    cout.width(12);
    cout << y;
    cout.width(12);
    cout << rho;
    cout.width(12);
    cout << p << endl;
  }

  return exit_status;
}