]> henry.ined.fr Git - .git/commitdiff
Summary: New compile, minor changes
authorN. Brouard <brouard@ined.fr>
Mon, 25 Aug 2014 18:32:34 +0000 (18:32 +0000)
committerN. Brouard <brouard@ined.fr>
Mon, 25 Aug 2014 18:32:34 +0000 (18:32 +0000)
Author: Brouard

src/imach.c

index 7e7bd81f7c968769c5fd1eda638914a54a49f5e3..d858d7d4b8487caafeb322cc2bd177d1e1dc484b 100644 (file)
@@ -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<br>\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