G. Linear_Algebra Module Code Listing

The main documentation of the Linear_Algebra 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/16/03
! CVS Info:   $Id: linear_algebra.F90,v 1.6 2004/06/15 22:57:50 hall Exp $

module Caesar_Linear_Algebra_Module

  ! Global use associations.

  use Caesar_Data_Structures_Module
  use Caesar_Mathematic_Vector_Class
  use Caesar_ELL_Matrix_Class
  use Caesar_Solver_Class
  !use Caesar_Matrix_Class
  !use Caesar_Full_Matrix_Class

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

  implicit none
  public

end module Caesar_Linear_Algebra_Module



Subsections

Michael L. Hall