[BACK]Return to fake-polymake.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / polymake / fake

File: [local] / OpenXM / src / polymake / fake / fake-polymake.c (download)

Revision 1.1, Thu Jul 15 05:39:08 2004 UTC (19 years, 10 months ago) by takayama
Branch: MAIN

1. The section on oxshell is included in the asir-contrib manual.
2. Fake polymake is introduced. It is used to debug oxshell
   and doPolymake on a machine where no polymake is installed.

/* $OpenXM: OpenXM/src/polymake/fake/fake-polymake.c,v 1.1 2004/07/15 05:39:08 takayama Exp $ */
/* This is a fake polymake which works as follows
   (1) By using oxhttpd (OpenXM http service), it calls the real polymake
       and gets an answer.
     [Not implemented]
or
   (2) It only returns stored answers of polymake, i.e., it does not make
       any computation and returns fixed answer no matter the input is.
*/

/*  Note for takayama.
    cf. misc-2003/11/polymake, misc-2004/07/polymake
        orange2:this04/polymake
 */

#include <stdio.h>

main(int argc,char *argv[]) {
  FILE *fp;
  FILE *fp2;
  int c;
  char cube[1024*2];
  char *home;
  if (argc < 3) {
	fprintf(stderr,"This is a fake polymake\n");
    fprintf(stderr,"Usage: polymake filename action\n");
    exit(3);
  }
  fp = fopen(argv[1],"w");
  fprintf(fp,"_This is an output of a fake polymake.\n");
  home = (char *)getenv("OpenXM_HOME");
  if (strcmp(argv[2],"FACET")==0 || strcmp(argv[2],"FACETS")==0) {
	sprintf(cube,"%s/src/polymake/fake/tmp/facet.poly",home);
  }else if (strcmp(argv[2],"FACE_LATTICE")==0) {
	sprintf(cube,"%s/src/polymake/fake/tmp/facelat.poly",home);
  }else{
	fprintf(stderr,"fake-polymake: ERROR: Unknown method, property, or label\n");
	fprintf(stderr,"facet1.poly  FACET\n");
	fprintf(stderr,"facelat1.poly  FACE_LATTICE\n");
	fclose(fp);
	exit(1);
  }
  fp2 = fopen(cube,"r");
  if (fp2 == NULL) {
	fprintf(stderr,"fake-polymake: ERROR: no data file is found.\n");
	exit(1);
  }
  while ((c=fgetc(fp2)) != EOF) {
     fputc(c,fp);
  }
  fclose(fp);

}