/* $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
/* $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];
/*---------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);
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