Path: blob/devel/elmergrid/src/metis-5.1.0/libmetis/metislib.h
3206 views
/*1* Copyright 1997, Regents of the University of Minnesota2*3* metis.h4*5* This file includes all necessary header files6*7* Started 8/27/948* George9*10* $Id: metislib.h 10655 2011-08-02 17:38:11Z benjamin $11*/1213#ifndef _LIBMETIS_METISLIB_H_14#define _LIBMETIS_METISLIB_H_1516#include <GKlib.h>1718#if defined(ENABLE_OPENMP)19#include <omp.h>20#endif212223#include <metis.h>24#include <rename.h>25#include <gklib_defs.h>2627#include <defs.h>28#include <struct.h>29#include <macros.h>30#include <proto.h>313233#if defined(COMPILER_MSC)34#if defined(rint)35#undef rint36#endif37#define rint(x) ((idx_t)((x)+0.5)) /* MSC does not have rint() function */38#endif3940#endif414243