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

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

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

int main()
{
  int               exit_status = 0;
  nag::ad::handle_t ad_handle;
  Integer           ifail = 0;

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

  // Read problem size and number of right-hand-sides
  Integer n, nrhs;
  cin >> n >> nrhs;

  // Allocate arrays containing A and its factorized form, B
  // and the solution X.
  double * a = 0, *b = 0;
  Integer *ipiv = 0;
  a             = new double[n * n];
  b             = new double[n * nrhs];
  ipiv          = new Integer[n];

  // Read the matrix A and copy
  for (int i = 0; i < n; ++i)
  {
    for (int j = 0; j < n; ++j)
    {
      Integer k = i + j * n;
      cin >> a[k];
    }
  }

  // Read the matrix B, register and copy
  for (int i = 0; i < n; ++i)
  {
    for (int j = 0; j < nrhs; ++j)
    {
      Integer k = i + j * n;
      cin >> b[k];
    }
  }

  // Solve AX = B
  ifail = 0;
  nag::ad::f07aa(ad_handle, n, nrhs, a, n, ipiv, b, n, ifail);

  NagError fail;
  INIT_FAIL(fail);
  x04cac(Nag_ColMajor, Nag_GeneralMatrix, Nag_NonUnitDiag, n, nrhs, b, n,
         "  Solution", 0, &fail);

  delete[] a;
  delete[] b;
  delete[] ipiv;
  return exit_status;
}