linalg  1.4.3
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
lapack.f90
1 ! lapack.f90
2 
7 module lapack
8  implicit none
9 
10 ! ******************************************************************************
11 ! LAPACK FUNCTION INTERFACES
12 ! ------------------------------------------------------------------------------
13  interface
14  function dlamch(cmach) result(x)
15  use linalg_constants, only : dp
16  character, intent(in) :: cmach
17  real(dp) :: x
18  end function
19  end interface
20 
21 end module
linalg_constants
lapack
Definition: lapack.f90:7