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

NAG AD Library Introduction
Example description
/* E04WB_T1W_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>
using namespace std;

extern "C"
{
  static void NAG_CALL objfun(void *&                 ad_handle,
                              Integer &               mode,
                              const Integer &         m,
                              const Integer &         n,
                              const Integer &         ldfj,
                              const Integer &         needfi,
                              const nagad_t1w_w_rtype x[],
                              nagad_t1w_w_rtype       f[],
                              nagad_t1w_w_rtype       fjac[],
                              const Integer &         nstate,
                              Integer                 iuser[],
                              nagad_t1w_w_rtype       ruser[]);
  static void NAG_CALL confun(void *&                 ad_handle,
                              Integer &               mode,
                              const Integer &         ncnln,
                              const Integer &         n,
                              const Integer &         ldcj,
                              const Integer           needc[],
                              const nagad_t1w_w_rtype x[],
                              nagad_t1w_w_rtype       c[],
                              nagad_t1w_w_rtype       cjac[],
                              const Integer &         nstate,
                              Integer                 iuser[],
                              nagad_t1w_w_rtype       ruser[]);
}

int main(void)
{
  // Scalars
  int exit_status = 0;

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

  // Create AD configuration data object
  Integer ifail     = 0;
  void *  ad_handle = 0;
  nag::ad::x10aa(ad_handle, ifail);

  // Skip first line of data file
  string mystr;
  getline(cin, mystr);

  // Read problem sizes
  Integer m, n, nclin, ncnln;
  cin >> m;
  cin >> n;
  cin >> nclin;
  cin >> ncnln;

  Integer liwork = 3 * n + nclin + 2 * ncnln;
  Integer lda = nclin, sda = n, ldcj = ncnln, ldfj = m, ldr = n;
  Integer lwork;

  lwork = 20 * n + m * (n + 3);
  if (nclin > 0)
    {
      lwork = lwork + 2 * n * n + 11 * nclin;
    }
  if (ncnln > 0)
    {
      lwork = lwork + n * nclin + (2 * n + 21) * ncnln;
    }
  Integer            lb = n + nclin + ncnln;
  nagad_t1w_w_rtype *a = 0, *bl = 0, *bu = 0, *y = 0, *c = 0, *cjac = 0, *f = 0;
  nagad_t1w_w_rtype *fjac = 0, *clamda = 0, *r = 0, *x = 0, *work = 0,
                    *rwsav = 0;
  Integer *istate = 0, *iwork = 0, *iwsav = 0;
  logical *lwsav = 0;
  double * dr = 0, *xr = 0;
  a      = new nagad_t1w_w_rtype[lda * sda];
  bl     = new nagad_t1w_w_rtype[lb];
  bu     = new nagad_t1w_w_rtype[lb];
  y      = new nagad_t1w_w_rtype[m];
  c      = new nagad_t1w_w_rtype[ncnln];
  cjac   = new nagad_t1w_w_rtype[ncnln * n];
  f      = new nagad_t1w_w_rtype[m];
  fjac   = new nagad_t1w_w_rtype[m * n];
  clamda = new nagad_t1w_w_rtype[lb];
  r      = new nagad_t1w_w_rtype[ldr * n];
  x      = new nagad_t1w_w_rtype[n];
  work   = new nagad_t1w_w_rtype[lwork];
  rwsav  = new nagad_t1w_w_rtype[475];
  lwsav  = new logical[120];
  xr     = new double[n];
  dr     = new double[m * n];
  istate = new Integer[lb];
  iwork  = new Integer[liwork];
  iwsav  = new Integer[610];

  // Read problem parameters and register for differentiation
  double yr;
  for (int i = 0; i < nclin; i++)
    {
      for (int j = 0; j < sda; j++)
        {
          Integer k = i + j * nclin;
          cin >> yr;
          a[k] = yr;
        }
    }
  for (int i = 0; i < m; i++)
    {
      cin >> yr;
      y[i] = yr;
    }
  for (int i = 0; i < lb; i++)
    {
      cin >> yr;
      bl[i] = yr;
    }
  for (int i = 0; i < lb; i++)
    {
      cin >> yr;
      bu[i] = yr;
    }
  for (int i = 0; i < n; i++)
    {
      cin >> yr;
      xr[i] = yr;
    }

  double rr[44] = {8.0,  8.0,  10.0, 10.0, 10.0, 10.0, 12.0, 12.0, 12.0,
                   12.0, 14.0, 14.0, 14.0, 16.0, 16.0, 16.0, 18.0, 18.0,
                   20.0, 20.0, 20.0, 22.0, 22.0, 22.0, 24.0, 24.0, 24.0,
                   26.0, 26.0, 26.0, 28.0, 28.0, 30.0, 30.0, 30.0, 32.0,
                   32.0, 34.0, 36.0, 36.0, 38.0, 38.0, 40.0, 42.0};
  nagad_t1w_w_rtype ruser[44];
  for (int i = 0; i < 44; i++)
    {
      ruser[i] = rr[i];
    }

  double            inc = 1.0, zero = 0.0;
  Integer           iter, iuser[1];
  nagad_t1w_w_rtype objf;
  for (int i = 0; i < 44; i++)
    {
      for (int j = 0; j < n; j++)
        {
          x[j] = xr[j];
        }
      dco::derivative(ruser[i]) = inc;

      // Initialize sav arrays
      ifail = 0;
      char cwsav[1];
      nag::ad::e04wb("E04USA", cwsav, 1, lwsav, 120, iwsav, 610, rwsav, 475,
                     ifail);

      // Solve the problem
      ifail = -1;
      nag::ad::e04us(ad_handle, m, n, nclin, ncnln, lda, ldcj, ldfj, ldr, a, bl,
                     bu, y, confun, objfun, iter, istate, c, cjac, f, fjac,
                     clamda, objf, r, x, iwork, liwork, work, lwork, -1, iuser,
                     -1, ruser, lwsav, iwsav, rwsav, ifail);

      if (ifail < 0 || ifail == 1)
        {
          cout << "nag::ad::e04us failed with ifail = " << ifail << endl;
          goto END;
        }

      // Get derivatives of x[0] w.r.t. ruser
      dr[i]                     = dco::derivative(x[0]);
      dco::derivative(ruser[i]) = zero;
    }

  // Primal results
  cout.setf(ios::scientific, ios::floatfield);
  cout.precision(4);
  cout << "\n Optimal objective function value = ";
  cout.width(12);
  cout << dco::value(objf);
  cout << "\n Solution point = ";
  for (int i = 0; i < n; i++)
    {
      cout.width(12);
      cout << dco::value(x[i]);
    }
  cout << endl;

  cout << "\n Derivatives calculated: First order tangents\n";
  cout << " Computational mode    : algorithmic\n\n";
  cout << " Derivatives of x[0] w.r.t ruser:\n\n";
  for (int i = 0; i < m; i++)
    {
      if (i % 4 == 0)
        {
          cout << endl;
        }
      cout.width(6);
      cout << i;
      cout.width(12);
      cout << dr[i];
    }
  cout << endl;

END:
  // Remove computational data object
  nag::ad::x10ab(ad_handle, ifail);

  delete[] a;
  delete[] bl;
  delete[] bu;
  delete[] y;
  delete[] c;
  delete[] cjac;
  delete[] f;
  delete[] fjac;
  delete[] clamda;
  delete[] r;
  delete[] x;
  delete[] work;
  delete[] rwsav;
  delete[] lwsav;
  delete[] xr;
  delete[] dr;
  delete[] istate;
  delete[] iwork;
  delete[] iwsav;
  return exit_status;
}

static void NAG_CALL objfun(void *&                 ad_handle,
                            Integer &               mode,
                            const Integer &         m,
                            const Integer &         n,
                            const Integer &         ldfj,
                            const Integer &         needfi,
                            const nagad_t1w_w_rtype x[],
                            nagad_t1w_w_rtype       f[],
                            nagad_t1w_w_rtype       fjac[],
                            const Integer &         nstate,
                            Integer                 iuser[],
                            nagad_t1w_w_rtype       ruser[])
{
  nagad_t1w_w_rtype x1, x2;
  x1 = x[0];
  x2 = x[1];

  if (mode == 0 && needfi > 0)
    {
      f[needfi - 1] = x1 + (0.49 - x1) * exp(-x2 * (ruser[needfi - 1] - 8.0));
    }
  else
    {
      for (int i = 0; i < m; ++i)
        {
          nagad_t1w_w_rtype ai   = ruser[i] - 8.0;
          nagad_t1w_w_rtype temp = exp(-x2 * ai);

          if (mode == 0 || mode == 2)
            {
              f[i] = x1 + (0.49 - x1) * temp;
            }
          if (mode == 1 || mode == 2)
            {
              fjac[i]     = 1.0 - temp;
              fjac[i + m] = -(0.49 - x1) * ai * temp;
            }
        }
    }
  return;
}
static void NAG_CALL confun(void *&                 ad_handle,
                            Integer &               mode,
                            const Integer &         ncnln,
                            const Integer &         n,
                            const Integer &         ldcj,
                            const Integer           needc[],
                            const nagad_t1w_w_rtype x[],
                            nagad_t1w_w_rtype       c[],
                            nagad_t1w_w_rtype       cjac[],
                            const Integer &         nstate,
                            Integer                 iuser[],
                            nagad_t1w_w_rtype       ruser[])
{
  if (nstate == 1)
    {
      for (int i = 0; i < ncnln * n; ++i)
        {
          cjac[i] = 0.0;
        }
    }
  if (needc[0] > 0)
    {
      if (mode == 0 || mode == 2)
        {
          c[0] = -0.09 - x[0] * x[1] + 0.49 * x[1];
        }
      if (mode == 1 || mode == 2)
        {
          cjac[0]     = -x[1];
          cjac[ncnln] = -x[0] + 0.49;
        }
    }
  return;
}