aboutsummaryrefslogtreecommitdiff
path: root/rat2float.ds
diff options
context:
space:
mode:
Diffstat (limited to 'rat2float.ds')
-rw-r--r--rat2float.ds16
1 files changed, 0 insertions, 16 deletions
diff --git a/rat2float.ds b/rat2float.ds
deleted file mode 100644
index 44582d6..0000000
--- a/rat2float.ds
+++ /dev/null
@@ -1,16 +0,0 @@
-#define DOCSTRING "\n\
-$Id$ \n\
-\n\
-float takes a polytope file with rational or integer coefficents, \n\
-and outputs an approximately equivelent one with floating point \n\
-coefficents.\n\
-\n\
-WARNING: Assumes that numerator and denominator will fit in long integer,\n\
-unless compiled with multiprecision support.\n\
-\n\
-\n\
-\n\
-"
-
-int usage(){ fprintf(stderr,"\n%s\n",rcsid);fprintf(stderr,DOCSTRING); exit(1); }
-#define CHECK_HELP if (argc > 1 && argv[1][0]=='-' && argv[1][1]=='h') usage();