/* G01EC_T1W_F C++ Header Example Program.
*
* Copyright 2024 Numerical Algorithms Group.
* Mark 30.1, 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;
cout << "G01EC_T1W_F C++ Header Example Program Results\n\n";
// Skip heading in data file
string mystr;
getline(cin, mystr);
// Read number of x values
Integer n;
cin >> n;
// Create AD configuration data object
Integer ifail = 0;
nag::ad::handle_t ad_handle;
cout << "Lower tail significance levels and derivatives\n\n";
cout << " x df p dp/dx dp/ddf\n";
cout.setf(ios::scientific, ios::floatfield);
cout.setf(ios::right);
cout.precision(4);
// Loop over x values
for (Integer i = 0; i < n; ++i)
{
// Read next x and df
double xr, dfr;
cin >> xr >> dfr;
nagad_t1w_w_rtype x, df, p;
x = xr;
df = dfr;
double inc = 1.0;
dco::derivative(x) = inc;
// Call NAG AD Routine
ifail = 0;
nag::ad::g01ec(ad_handle, "L", x, df, p, ifail);
double dpdx;
dpdx = dco::derivative(p);
x = xr;
df = dfr;
dco::derivative(df) = inc;
// Call NAG AD Routine
ifail = 0;
nag::ad::g01ec(ad_handle, "L", x, df, p, ifail);
double dpdf;
dpdf = dco::derivative(p);
cout.width(12);
cout << dco::value(x);
cout.width(12);
cout << dco::value(df);
cout.width(12);
cout << dco::value(p);
cout.width(12);
cout << dpdx;
cout.width(12);
cout << dpdf << endl;
}
ifail = 0;
return exit_status;
}