/* nag_shifted_log (s01bac) Example Program.
 *
 * Copyright 2014 Numerical Algorithms Group.
 *
 * Mark 7, 2002.
 */

#include <nag.h>
#include <stdio.h>
#include <nag_stdlib.h>
#include <nags.h>

int main(void)
{
  Integer  exit_status = 0;
  double   x, y;
  NagError fail;

  INIT_FAIL(fail);

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_shifted_log (s01bac) Example Program Results\n");
  printf("       x            y\n");
  while (scanf("%lf", &x) != EOF)
    {
      /* nag_shifted_log (s01bac).
       * ln(1+x)
       */
      y = nag_shifted_log(x, &fail);
      if (fail.code != NE_NOERROR)
        {
          printf("Error from nag_shifted_log (s01bac).\n%s\n",
                  fail.message);
          exit_status = 1;
          goto END;
        }
      printf("%13.4e %13.4e\n", x, y);
    }

 END:
  return exit_status;
}