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

NAG AD Library Introduction
Example description
/* S15AD_P0W_F C++ Header Example Program.
 *
 * Copyright 2021 Numerical Algorithms Group.
 * Mark 27.2, 2021.
 */

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

int main(void)
{
  int exit_status = 0;

  // Input and output variables

  cout << "S15AD_P0W_F C++ Header Example Program Results\n\n";

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

  // Call NAG AD Routine
  double  e, x = -1.0;
  void *  ad_handle = 0;
  Integer ifail     = 0;

  nag::ad::s15ad(ad_handle, x, e, ifail);

  cout.width(12);
  cout << x;
  cout.width(12);
  cout << e << endl;

  return exit_status;
}