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

NAG AD Library Introduction
Example description
/* S15AD_T1W_F C++ Header Example Program.
 *
 * Copyright 2024 Numerical Algorithms Group.
 * Mark 30.0, 2024.
 */

#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
  nagad_t1w_w_rtype e, x;

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

  x = -1.;

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

  // Create AD configuration data object
  Integer           ifail = 0;
  nag::ad::handle_t ad_handle;

  dco::derivative(x) = 1.;

  // Call NAG AD Routine
  ifail = 0;
  nag::ad::s15ad(ad_handle, x, e, ifail);

  // Get derivative, derfcdx and output values
  double dedx;
  dedx = dco::derivative(e);

  cout.width(12);
  cout << dco::value(x);
  cout.width(12);
  cout << dco::value(e);
  cout.width(12);
  cout << dedx << endl;

  return exit_status;
}