Commit dc6a6f61 by Jan Hubicka

Fix previous commit.

From-SVN: r192810
parent a093356a
...@@ -16,21 +16,3 @@ ...@@ -16,21 +16,3 @@
END DO END DO
END DO END DO
END SUBROUTINE calc_S_derivs END SUBROUTINE calc_S_derivs
SUBROUTINE calc_S_derivs()
INTEGER, DIMENSION(6, 2) :: c_map_mat
INTEGER, DIMENSION(:), POINTER:: C_mat
DO j=1,3
DO m=j,3
n=n+1
c_map_mat(n,1)=j
IF(m==j)CYCLE
c_map_mat(n,2)=m
END DO
END DO
DO m=1,6
DO j=1,2
IF(c_map_mat(m,j)==0)CYCLE
CALL foo(C_mat(c_map_mat(m,j)))
END DO
END DO
END SUBROUTINE calc_S_derivs
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment