Skip to content

Commit

Permalink
Fix shortest_distance interface
Browse files Browse the repository at this point in the history
Signed-off-by: Igor S. Gerasimov <[email protected]>
  • Loading branch information
foxtran committed Nov 27, 2024
1 parent 9863ece commit c3d0c17
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/gfnff/frag_hess.f90
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,10 @@ function shortest_distance(nspin, start, goal, numnb, neighbours, input_distance
integer, intent(in) :: start
integer, intent(in) :: goal
integer, intent(in) :: numnb
integer, intent(in) :: neighbours(20, nspin)
integer, intent(in) :: neighbours(numnb, nspin, 1)
real(wp), intent(in) :: input_distances(nspin, nspin)
logical, intent(out) :: visited(nspin)
integer, intent(out) :: precessor(nspin)
integer :: current
integer :: neighbour
integer :: i_neighbours
integer :: bonds
real(wp) :: alt_dist
real(wp) :: distance(nspin)
end function shortest_distance
subroutine eigsort4(lab,u,ew)
use xtb_mctc_accuracy, only : sp
Expand Down

0 comments on commit c3d0c17

Please sign in to comment.