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

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

#include <dco.hpp>
#include <iostream>
#include <math.h>
#include <nag.h>
#include <nagad.h>
#include <stdio.h>
#include <string>

static void NAG_CALL funct(void *&                  ad_handle,
                           const nagad_a1w_w_rtype &xc,
                           nagad_a1w_w_rtype &      fc,
                           Integer                  iuser[],
                           nagad_a1w_w_rtype        ruser[])
{
  fc = sin(ruser[0] * xc) / xc;
}

/* funct */

int main(void)
{
  Integer           exit_status = 0, max_fun;
  Integer           ifail;
  nagad_a1w_w_rtype a, b, e1, e2, f, x;
  nagad_a1w_w_rtype ruser[1];
  Integer           iuser[1];

  printf("E04AB_A1W_F C++ Header Example Program Results\n\n");

  // Create AD tape
  dco::ga1s<double>::global_tape = dco::ga1s<double>::tape_t::create();
  void *ad_handle                = 0;
  nag::ad::x10aa(ad_handle, ifail);

  /* For communication with user-supplied functions: */
  ruser[0] = 1.;
  /* e1 and e2 are set to zero so that nag_opt_one_var_func (e04abc) will
   *  reset them to their default values.
   */
  e1 = 0.0;
  e2 = 0.0;
  /* The minimum is known to lie in the range (3.5, 5.0) */
  a = 3.5;
  b = 5.0;
  /* Allow 30 calls of funct */
  max_fun = 30;
  /* nag_opt_one_var_func (e04abc).
   * Minimizes a function of one variable, using function values only.
   */
  dco::ga1s<double>::global_tape->register_variable(ruser[0]);

  nag::ad::e04ab(ad_handle, funct, e1, e2, a, b, max_fun, x, f, -1, iuser, -1,
                 ruser, ifail);

  if (ifail != 0)
    {
      printf("Error from nagad_opt_one_var_func_a1w (nag::ad::e04ab)."
             "  %" NAG_IFMT "\n",
             ifail);
      exit_status = 1;
    }
  else
    {
      printf("The minimum lies in the interval %7.5f to %7.5f.\n",
             dco::value(a), dco::value(b));
      printf("Its estimated position is %7.5f,\n", dco::value(x));
      printf("where the function value is %13.4e.\n", dco::value(f));
      printf("%1" NAG_IFMT " function evaluations were required.\n", max_fun);

      dco::derivative(x)                                 = 1.0;
      dco::ga1s<double>::global_tape->sparse_interpret() = true;
      dco::ga1s<double>::global_tape->interpret_adjoint();
      printf("dx/druser %26.16f\n", dco::derivative(ruser[0]));
    }
  // Remove computational data object and tape
  nag::ad::x10ab(ad_handle, ifail);
  dco::ga1s<double>::tape_t::remove(dco::ga1s<double>::global_tape);

  return exit_status;
}