C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/model/inc/RECIP_DXC_MACROS.h,v 1.1 1998/08/15 16:55:48 cnh Exp $ C C /==========================================================\ C | RECIP_DXC_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_DXC_CONST #define _recip_dxC(i,j,bi,bj) recip_dxC(1,1,1,1) #endif #ifdef RECIP_DXC_FX #define _recip_dxC(i,j,bi,bj) recip_dxC(i,1,bi,1) #endif #ifdef RECIP_DXC_FY #define _recip_dxC(i,j,bi,bj) recip_dxC(1,j,1,bj) #endif #ifndef _recip_dxC #define _recip_dxC(i,j,bi,bj) recip_dxC(i,j,bi,bj) #endif