Skip to content

Commit

Permalink
BUG fix, 'free' did not read the space group symbol correctly on CYWGIN
Browse files Browse the repository at this point in the history
  • Loading branch information
rneder committed May 3, 2018
1 parent 998a852 commit f70fd37
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions discus/prog/structur.f90
Original file line number Diff line number Diff line change
Expand Up @@ -743,8 +743,8 @@ SUBROUTINE do_readfree(ianz, maxw, cpara, lpara)
!
!CHARACTER(LEN=*), INTENT(IN) :: befehl
!INTEGER , INTENT(IN) :: lbef
INTEGER , INTENT(IN) :: ianz
INTEGER , INTENT(IN) :: MAXW
INTEGER , INTENT(INOUT) :: ianz
INTEGER , INTENT(IN ) :: MAXW
CHARACTER(LEN=*), DIMENSION(MAXW), INTENT(INOUT) :: cpara
INTEGER , DIMENSION(MAXW), INTENT(INOUT) :: lpara
!
Expand All @@ -763,6 +763,10 @@ SUBROUTINE do_readfree(ianz, maxw, cpara, lpara)
cr_syst = 1
spcgr_para = 1
CALL get_symmetry_matrices
write(*,*) 'IANZ ', ianz
do i=1,ianz
write(*,*) ' PARA ', i, cpara(i)(1:lpara(i))
enddo
IF (ianz==0) THEN
cr_a0 (:) = 1.0
cr_win(:) = 90.0
Expand Down

0 comments on commit f70fd37

Please sign in to comment.