hp2FEM
0.1
|
00001 /* 00002 * Copyright 1997, Regents of the University of Minnesota 00003 * 00004 * metis.h 00005 * 00006 * This file includes all necessary header files 00007 * 00008 * Started 8/27/94 00009 * George 00010 * 00011 * $Id: metislib.h 10655 2011-08-02 17:38:11Z benjamin $ 00012 */ 00013 00014 #ifndef _LIBMETIS_METISLIB_H_ 00015 #define _LIBMETIS_METISLIB_H_ 00016 00017 #include <GKlib.h> 00018 00019 #if defined(ENABLE_OPENMP) 00020 #include <omp.h> 00021 #endif 00022 00023 00024 #include <metis.h> 00025 #include <rename.h> 00026 #include <gklib_defs.h> 00027 00028 #include <defs.h> 00029 #include <struct.h> 00030 #include <macros.h> 00031 #include <proto.h> 00032 00033 00034 #if defined(COMPILER_MSC) 00035 #if defined(rint) 00036 #undef rint 00037 #endif 00038 #define rint(x) ((idx_t)((x)+0.5)) /* MSC does not have rint() function */ 00039 #endif 00040 00041 #endif