]> henry.ined.fr Git - .git/commitdiff
Summary: Before ncovmax
authorN. Brouard <brouard@ined.fr>
Thu, 9 May 2019 13:44:18 +0000 (13:44 +0000)
committerN. Brouard <brouard@ined.fr>
Thu, 9 May 2019 13:44:18 +0000 (13:44 +0000)
src/imach.c

index 9e2cf5a7d2ea161628f1b6063158dffc0578399c..b3774fb6b6ae8b45c0f5e27227ad2164af8e690d 100644 (file)
@@ -1,6 +1,11 @@
 /* $Id$
   $State$
   $Log$
+  Revision 1.290  2019/05/09 13:39:37  brouard
+  Summary: 0.99r18 unlimited number of individuals
+
+  The number n which was limited to 20,000 cases is now unlimited, from firstobs to lastobs. If the number is too for the virtual memory, probably an error will occur.
+
   Revision 1.289  2018/12/13 09:16:26  brouard
   Summary: Bug for young ages (<-30) will be in r17
 
@@ -1049,7 +1054,7 @@ typedef struct {
 #define NINTERVMAX 8
 #define NLSTATEMAX 8 /**< Maximum number of live 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 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