Skip to content

Commit

Permalink
A bug fix from Natalja:
Browse files Browse the repository at this point in the history
"The code crashed in extrap_nod3D, gen_support.F90, because scalar variables were declared allocatable."
  • Loading branch information
dsidoren committed Nov 5, 2018
1 parent 6aa0a9e commit ccdfba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gen_support.F90
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ subroutine extrap_nod3D(arr)
real(kind=WP) :: val
integer :: enodes(3)
logical :: success
real(kind=WP), allocatable :: loc_max, glob_max
real(kind=WP) :: loc_max, glob_max


allocate(work_array(myDim_nod2D+eDim_nod2D))
Expand Down

0 comments on commit ccdfba6

Please sign in to comment.