Initial snark14m import
[snark14.git] / src / snark / experimenter.h
1 /*
2  ***********************************************************
3  $SNARK_Header: S N A R K  1 4 - A PICTURE RECONSTRUCTION PROGRAM $
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/experimenter.h $
5  $LastChangedRevision: 85 $
6  $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9  */
10
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <math.h>
14
15 #define MAXENSEMSIZE    100
16 #define MAXLINESIZE     160
17 #define MAXEXP                2
18
19 int experimenter(int argc, char* argv[]);
20
21 FILE *pstream;
22
23 #ifdef WIN32
24
25 int strncasecmp(char* str1, char* str2, int len);
26
27 #define srand48(A)  (srand(A))
28 #define drand48()   ((double)(rand()) / (RAND_MAX+1))
29
30 #define pclose(A)   (_pclose((A)))
31 #define popen(A,B)  (_popen((A),(B)))
32
33 #endif