E. Mathematics Module Code Listing

The main documentation of the Mathematics 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: 09/24/01
! CVS Info:   $Id: mathematics.F90,v 1.5 2005/02/26 00:23:27 hall Exp $

module Caesar_Mathematics_Module

  ! Global use associations.

  use Caesar_Data_Structures_Module
  use Caesar_Math_Utils_Module
  use Caesar_Statistics_Class

  ! Start up with everything untyped and public.
  ! Note: this module contains no private information.

  implicit none
  public

end module Caesar_Mathematics_Module



Subsections

Michael L. Hall