From: N. Brouard Date: Mon, 25 Aug 2014 18:32:34 +0000 (+0000) Subject: Summary: New compile, minor changes X-Git-Tag: imach-099s7~430 X-Git-Url: https://henry.ined.fr/git/?a=commitdiff_plain;h=cd4f381792c459978c5c012f2016426ec425f265;p=.git Summary: New compile, minor changes Author: Brouard --- diff --git a/src/imach.c b/src/imach.c index 7e7bd81..d858d7d 100644 --- a/src/imach.c +++ b/src/imach.c @@ -1,6 +1,9 @@ /* $Id$ $State$ $Log$ + Revision 1.154 2014/06/20 17:32:08 brouard + Summary: Outputs now all graphs of convergence to period prevalence + Revision 1.153 2014/06/20 16:45:46 brouard Summary: If 3 live state, convergence to period prevalence on same graph Author: Brouard @@ -513,7 +516,7 @@ extern int errno; /* $Id$ */ /* $State$ */ -char version[]="Imach version 0.98nU, January 2014,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121)"; +char version[]="Imach version 0.98nV, August 2014,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121)"; char fullversion[]="$Revision$ $Date$"; char strstart[80]; char optionfilext[10], optionfilefiname[FILENAMELENGTH]; @@ -5405,8 +5408,8 @@ int main(int argc, char *argv[]) /*---------arguments file --------*/ if((ficpar=fopen(optionfile,"r"))==NULL) { - printf("Problem with optionfile %s with errno=%s\n",optionfile,strerror(errno)); - fprintf(ficlog,"Problem with optionfile %s with errno=%s\n",optionfile,strerror(errno)); + printf("Problem with optionfile '%s' with errno='%s'\n",optionfile,strerror(errno)); + fprintf(ficlog,"Problem with optionfile '%s' with errno='%s'\n",optionfile,strerror(errno)); fflush(ficlog); /* goto end; */ exit(70); @@ -6660,9 +6663,9 @@ Interval (in months) between two waves: Min=%d Max=%d Mean=%.2lf
\n",\ sprintf(plotcmd,"\"%sgnuplot.exe\"",pathimach); #endif if(!stat(plotcmd,&info)){ - printf("Error gnuplot program not found: %s\n",plotcmd);fflush(stdout); + printf("Error or gnuplot program not found: %s\n",plotcmd);fflush(stdout); if(!stat(getenv("GNUPLOTBIN"),&info)){ - printf("Error gnuplot program not found: %s Environment GNUPLOTBIN not set.\n",plotcmd);fflush(stdout); + printf("Error or gnuplot program not found: %s Environment GNUPLOTBIN not set.\n",plotcmd);fflush(stdout); }else strcpy(pplotcmd,plotcmd); #ifdef UNIX