Changeset 381 for branches/ORCHIDEE_EXT/ORCHIDEE/src_parallel
- Timestamp:
- 2011-08-01T15:40:24+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_EXT/ORCHIDEE/src_parallel/transfert_para.f90
r303 r381 196 196 IMPLICIT NONE 197 197 LOGICAL,INTENT(INOUT) :: Var 198 199 #ifndef CPP_PARA 200 RETURN 201 #else 202 CALL bcast_lgen(Var,1) 198 LOGICAL,DIMENSION(1) :: Var1 199 #ifndef CPP_PARA 200 RETURN 201 #else 202 IF (is_root_prc) & 203 Var1(1)=Var 204 CALL bcast_lgen(Var1,1) 205 Var=Var1(1) 203 206 #endif 204 207 END SUBROUTINE bcast_l
Note: See TracChangeset
for help on using the changeset viewer.