Fixed derived type for StructuredMesh (had int4s instead of real8s for origin and width).

This commit is contained in:
Paul Romano 2011-11-21 10:41:34 -05:00
parent 0bbf63e0a8
commit 03f00a2259

View file

@ -12,8 +12,8 @@ module mesh_header
integer :: type
integer :: n_dimension
integer, allocatable :: dimension(:)
integer, allocatable :: origin(:)
integer, allocatable :: width(:)
real(8), allocatable :: origin(:)
real(8), allocatable :: width(:)
end type StructuredMesh
end module mesh_header