-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcdddef.h
32 lines (23 loc) · 909 Bytes
/
cdddef.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* cdddef.h: Definition file for cdd.c
written by Komei Fukuda, [email protected]
Version 0.61, December 1, 1997
*/
/* cdd.c : C-Implementation of the double description method for
computing all vertices and extreme rays of the polyhedron
P= {x : b - A x >= 0}.
Please read COPYING (GNU General Public Licence) and
the manual cddman.tex for detail.
*/
#include "dplexdef.h"
#define MMAX dp_MMAX /* USER'S CHOICE: max row size of A plus one */
#define NMAX dp_NMAX /* USER'S CHOICE: max column size of A plus one */
#define rowsetsize MMAX /* The size of the column index set */
#define colsetsize NMAX /* The size of the row index set */
#define datawidth 10
#define filenamelen 256
#define wordlenmax 128
#define linelenmax 256
#define FALSE 0
#define TRUE 1
#define zero dp_zero /*real zero*/
/* end of cdddef.h */