C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/model/inc/RECIP_DYF_MACROS.h,v 1.1 1998/08/15 16:55:48 cnh Exp $ C C /==========================================================\ C | RECIP_DYF_MACROS.h | C |==========================================================| C | These macros are used to reduce memory requirement and/or| C | memory references when variables are fixed along a given | C | axis or axes. | C \==========================================================/ #ifdef RECIP_DYF_CONST #define _recip_dyF(i,j,bi,bj) recip_dyF(1,1,1,1) #endif #ifdef RECIP_DYF_FX #define _recip_dyF(i,j,bi,bj) recip_dyF(i,1,bi,1) #endif #ifdef RECIP_DYF_FY #define _recip_dyF(i,j,bi,bj) recip_dyF(1,j,1,bj) #endif #ifndef _recip_dyF #define _recip_dyF(i,j,bi,bj) recip_dyF(i,j,bi,bj) #endif