Cloned library METIS with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
659 B

/*
* Copyright 1997, Regents of the University of Minnesota
*
* metis.h
*
* This file includes all necessary header files
*
* Started 8/27/94
* George
*
* $Id: metislib.h 10655 2011-08-02 17:38:11Z benjamin $
*/
#ifndef _LIBMETIS_METISLIB_H_
#define _LIBMETIS_METISLIB_H_
#include <GKlib.h>
#if defined(ENABLE_OPENMP)
#include <omp.h>
#endif
#include <metis.h>
#include "rename.h"
#include "gklib_defs.h"
#include "defs.h"
#include "struct.h"
#include "macros.h"
#include "proto.h"
#if defined(COMPILER_MSC)
#if defined(rint)
#undef rint
#endif
#define rint(x) ((idx_t)((x)+0.5)) /* MSC does not have rint() function */
#endif
#endif