1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/*****************************************************************************
/
/ SPACE (SPArse Cholesky Elimination) Library: space.h
/
/ author J"urgen Schulze, University of Paderborn
/ created 99sep14
/
/ This file includes all necessary header files
/
******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <time.h>
#ifndef _WIN32
#include <sys/times.h>
#endif
#if defined(__MINGW32__)
#include<sys/time.h>
#endif
#include <math.h>
#ifdef PARIX
#ifdef __EPX
#include <epx/root.h>
#include <epx/link.h>
#include <epx/types.h>
#include <epx/sem.h>
#include <epx/thread.h>
#include <epx/time.h>
#include <epx/logerror.h>
#else
#include <sys/root.h>
#include <sys/link.h>
#include <sys/types.h>
#include <sys/sem.h>
#include <sys/thread.h>
#include <sys/time.h>
#include <sys/logerror.h>
#endif
#include <signal.h>
#endif
#ifdef MPI
#include "mpi.h"
#endif
#include "const.h"
#include "params.h"
#include "macros.h"
#include "types.h"
#include "protos.h"
#include "eval.h"
#define FORTRAN(nu,nl,pl,pc) \
void nu (); \
void nl pl \
{ nu pc; } \
void nl##_ pl \
{ nu pc; } \
void nl##__ pl \
{ nu pc; } \
void nu pl
|