mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
50 lines
836 B
C
50 lines
836 B
C
/*
|
|
* 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/defs.h"
|
|
#include "../libmetis/struct.h"
|
|
#include "../libmetis/rename.h"
|
|
#include "../libmetis/macros.h"
|
|
#include "../libmetis/proto.h"
|
|
#include "defs.h"
|
|
#include "struct.h"
|
|
#include "proto.h"
|
|
|
|
|
|
#if defined(COMPILER_MSC)
|
|
#define rint(x) ((idxtype)((x)+0.5)) /* MSC does not have rint() function */
|
|
#endif
|
|
|
|
|
|
#if defined(COMPILER_GCC)
|
|
extern char* strdup (const char *);
|
|
#endif
|
|
|