* ************************************************************************ logical function gxsu(xstat) * ************************************************************************ * Purpose : * --------- * This function checks if the status XSTAT corresponds to the * status of a superbasic variable. * Parameters : * ------------ * xstat ( int ) * input : the status of the considered variable. * output : unmodified. * gxsu ( log ) * input : meaningless. * output : .true. iff the status XSTAT corresponds to * the status of a superbasic variable. * .false. otherwise. * Routines used : * --------------- * None. * Programming : * ------------- * D. Tuyttens * ======================================================================== * Routine parameter integer xstat gxsu = mod(xstat,8).eq.1 return end