E.1 Math_Utils Module Code Listing

The main documentation of the Math_Utils Module contains additional explanation of this code listing.

!
! Author: Michael L. Hall
!         P.O. Box 1663, MS-D413, LANL
!         Los Alamos, NM 87545
!         ph: 505-665-4312
!         email: Hall@LANL.gov
! 
! Created on: 01/26/05
! CVS Info:   $Id: math_utils.F90,v 1.2 2005/01/27 16:22:44 hall Exp $

module Caesar_Math_Utils_Module

  ! Global use associations.

  use Caesar_Intrinsics_Module

  ! Start up with everything untyped and private.

  implicit none
  private

  ! Public procedures.

  public :: Prime_Factors

  interface Extract_Factor
    module procedure Extract_Factor_Math_Utils
  end interface

  interface Prime_Factors
    module procedure Prime_Factors_Math_Utils
  end interface

contains

The Math_Utils Module contains the following routines which are listed in separate sections:

* Prime_Factors_Math_Utils

end module Caesar_Math_Utils_Module



Subsections

Michael L. Hall