From d683c8faf11aa491d07b0ca774b0950451ac2e6c Mon Sep 17 00:00:00 2001 From: "N. Brouard" Date: Wed, 31 Mar 2021 13:11:57 +0000 Subject: [PATCH] Summary: Version 0.99r23 * imach.c (Module): Still bugs in the result loop. Thank to Holly Benett --- src/imach.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/imach.c b/src/imach.c index b97664a..5661d5b 100644 --- a/src/imach.c +++ b/src/imach.c @@ -1,6 +1,9 @@ /* $Id$ $State$ $Log$ + Revision 1.307 2021/03/08 18:11:32 brouard + Summary: 0.99r22 fixed bug on result: + Revision 1.306 2021/02/20 15:44:02 brouard Summary: Version 0.99r21 @@ -1145,7 +1148,7 @@ typedef struct { /* $State$ */ #include "version.h" char version[]=__IMACH_VERSION__; -char copyright[]="Feb 2021,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121), Intel Software 2015-2020, INED 2000-2021"; +char copyright[]="March 2021,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121), Intel Software 2015-2020, Nihon University 2021, INED 2000-2021"; char fullversion[]="$Revision$ $Date$"; char strstart[80]; char optionfilext[10], optionfilefiname[FILENAMELENGTH]; @@ -12417,9 +12420,11 @@ Please run with mle=-1 to get a correct covariance matrix.\n",ageminpar,agemaxpa /* Results */ endishere=0; nresult=0; + parameterline=0; do{ if(!fgets(line, MAXLINE, ficpar)){ endishere=1; + parameterline=15; }else if (line[0] == '#') { /* If line starts with a # it is a comment */ numlinepar++; @@ -12438,7 +12443,7 @@ Please run with mle=-1 to get a correct covariance matrix.\n",ageminpar,agemaxpa else{ parameterline=14; } - switch (parameterline){ + switch (parameterline){ /* =0 only if only comments */ case 11: if((num_filled=sscanf(line,"prevforecast=%d starting-proj-date=%lf/%lf/%lf final-proj-date=%lf/%lf/%lf mobil_average=%d\n",&prevfcast,&jproj1,&mproj1,&anproj1,&jproj2,&mproj2,&anproj2,&mobilavproj)) !=EOF && (num_filled == 8)){ fprintf(ficparo,"prevforecast=%d starting-proj-date=%.lf/%.lf/%.lf final-proj-date=%.lf/%.lf/%.lf mobil_average=%d\n",prevfcast,jproj1,mproj1,anproj1,jproj2,mproj2,anproj2,mobilavproj); @@ -12508,11 +12513,14 @@ Please run with mle=-1 to get a correct covariance matrix.\n",ageminpar,agemaxpa } /* goto end; */ break; - default: + case 15: + printf("End of resultlines.\n"); + fprintf(ficlog,"End of resultlines.\n"); + break; + default: /* parameterline =0 */ nresult=1; decoderesult(".",nresult ); /* No covariate */ } /* End switch parameterline */ - parameterline=0; }while(endishere==0); /* End do */ /* freqsummary(fileres, agemin, agemax, s, agev, nlstate, imx,Tvaraff,nbcode, ncodemax,mint,anint); */ -- 2.43.0