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

NAG AD Library Introduction
Example description
    Program s15ad_p0w_fe

!     S15AD_P0W_F Example Program Text
!     Mark 28.3 Release. NAG Copyright 2022.

!     .. Use Statements ..
      Use iso_c_binding, Only: c_ptr
      Use nagad_library, Only: s15ad_p0w_f
      Use nag_library, Only: nag_wp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter               :: nout = 6
!     .. Local Scalars ..
      Type (c_ptr)                     :: ad_handle
      Real (Kind=nag_wp)               :: e, x
      Integer                          :: ifail
!     .. Executable Statements ..
      Write (nout,*) 'S15AD_P0W_F Example Program Results'

      x = -1._nag_wp

      Write (nout,*)
      Write (nout,*) '       x         erfc(x)'

      ifail = 0
      Call s15ad_p0w_f(ad_handle,x,e,ifail)

      Write (nout,99999) x, e

99999 Format (1X,1P,2E12.3)
    End Program s15ad_p0w_fe