/* \file toolkits.h * \brief: this API allows use of external packages, provides patches, etc ... */ #ifndef _TOOLKITS_H_ #define _TOOLKITS_H_ #ifdef HAVE_CONFIG_H #include #else #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" #endif #ifdef _HAVE_PETSC_ #include "./petsc/petscincludes.h" #endif #include "./mpi/mpiincludes.h" #include "./metis/metisincludes.h" #include "./triangle/triangleincludes.h" #include "./matlab/matlabincludes.h" #include "./double/double.h" #include "./toolkitsenums.h" #endif