Diff for /imach/src/imach.c between versions 1.290 and 1.291

version 1.290, 2019/05/09 13:39:37 version 1.291, 2019/05/09 13:44:18
Line 1 Line 1
 /* $Id$  /* $Id$
   $State$    $State$
   $Log$    $Log$
     Revision 1.291  2019/05/09 13:44:18  brouard
     Summary: Before ncovmax
   
   Revision 1.290  2019/05/09 13:39:37  brouard    Revision 1.290  2019/05/09 13:39:37  brouard
   Summary: 0.99r18 unlimited number of individuals    Summary: 0.99r18 unlimited number of individuals
   
Line 1054  typedef struct { Line 1057  typedef struct {
 #define NINTERVMAX 8  #define NINTERVMAX 8
 #define NLSTATEMAX 8 /**< Maximum number of live states (for func) */  #define NLSTATEMAX 8 /**< Maximum number of live states (for func) */
 #define NDEATHMAX 8 /**< Maximum number of dead states (for func) */  #define NDEATHMAX 8 /**< Maximum number of dead states (for func) */
 /* #define NCOVMAX 20 */ /**< Maximum number of covariates, including generated covariates V1*V2 */  #define NCOVMAX 20  /**< Maximum number of covariates, including generated covariates V1*V2 */
 #define codtabm(h,k)  (1 & (h-1) >> (k-1))+1  #define codtabm(h,k)  (1 & (h-1) >> (k-1))+1
 /*#define decodtabm(h,k,cptcoveff)= (h <= (1<<cptcoveff)?(((h-1) >> (k-1)) & 1) +1 : -1)*/  /*#define decodtabm(h,k,cptcoveff)= (h <= (1<<cptcoveff)?(((h-1) >> (k-1)) & 1) +1 : -1)*/
 #define decodtabm(h,k,cptcoveff) (((h-1) >> (k-1)) & 1) +1   #define decodtabm(h,k,cptcoveff) (((h-1) >> (k-1)) & 1) +1 

Removed from v.1.290  
changed lines
  Added in v.1.291


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>