-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathmetisbin.h
54 lines (45 loc) · 968 Bytes
/
metisbin.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* metisbin.h
*
* This file contains the various header inclusions
*
* Started 8/9/02
* George
*/
#include <GKlib.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include <time.h>
#include <string.h>
#include <limits.h>
#include <signal.h>
#include <setjmp.h>
#include <assert.h>
#if defined(ENABLE_OPENMP)
#include <omp.h>
#endif
#include <metis.h>
#include "../libmetis/rename.h"
#include "../libmetis/gklib_defs.h"
#include "../libmetis/defs.h"
#include "../libmetis/struct.h"
#include "../libmetis/macros.h"
#include "../libmetis/proto.h"
#include "defs.h"
#include "struct.h"
#include "proto.h"
#if defined(COMPILER_GCC)
extern char* strdup (const char *);
#endif
#define SVNINFO "unknown"
#if defined(COMPILER_MSC)
#if defined(rint)
#undef rint
#endif
#define rint(x) ((idx_t)((x)+0.5)) /* MSC does not have rint() function */
#define __func__ "dummy-function"
#endif