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.
86 lines
1.4 KiB
86 lines
1.4 KiB
2 years ago
|
/*
|
||
|
* GKlib.h
|
||
|
*
|
||
|
* George's library of most frequently used routines
|
||
|
*
|
||
|
* $Id: GKlib.h 14866 2013-08-03 16:40:04Z karypis $
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef _GKLIB_H_
|
||
|
#define _GKLIB_H_ 1
|
||
|
|
||
|
#define GKMSPACE
|
||
|
|
||
|
#if defined(_MSC_VER)
|
||
|
#define __MSC__
|
||
|
#endif
|
||
|
#if defined(__ICC)
|
||
|
#define __ICC__
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include "gk_arch.h" /*!< This should be here, prior to the includes */
|
||
|
|
||
|
|
||
|
/*************************************************************************
|
||
|
* Header file inclusion section
|
||
|
**************************************************************************/
|
||
|
#include <stddef.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdio.h>
|
||
|
#include <memory.h>
|
||
|
#include <errno.h>
|
||
|
#include <ctype.h>
|
||
|
#include <math.h>
|
||
|
#include <float.h>
|
||
|
#include <time.h>
|
||
|
#include <string.h>
|
||
|
#include <limits.h>
|
||
|
#include <signal.h>
|
||
|
#include <setjmp.h>
|
||
|
#include <assert.h>
|
||
|
#include <sys/stat.h>
|
||
|
|
||
|
#if defined(__WITHPCRE__)
|
||
|
#include <pcreposix.h>
|
||
|
#else
|
||
|
#if defined(USE_GKREGEX)
|
||
|
#include "gkregex.h"
|
||
|
#else
|
||
|
#include <regex.h>
|
||
|
#endif /* defined(USE_GKREGEX) */
|
||
|
#endif /* defined(__WITHPCRE__) */
|
||
|
|
||
|
|
||
|
|
||
|
#if defined(__OPENMP__)
|
||
|
#include <omp.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#include <gk_types.h>
|
||
|
#include <gk_struct.h>
|
||
|
#include <gk_externs.h>
|
||
|
#include <gk_defs.h>
|
||
|
#include <gk_macros.h>
|
||
|
#include <gk_getopt.h>
|
||
|
|
||
|
#include <gk_mksort.h>
|
||
|
#include <gk_mkblas.h>
|
||
|
#include <gk_mkmemory.h>
|
||
|
#include <gk_mkpqueue.h>
|
||
|
#include <gk_mkpqueue2.h>
|
||
|
#include <gk_mkrandom.h>
|
||
|
#include <gk_mkutils.h>
|
||
|
|
||
|
#include <gk_proto.h>
|
||
|
|
||
|
|
||
|
#endif /* GKlib.h */
|
||
|
|
||
|
|