aboutsummaryrefslogtreecommitdiff
path: root/src/include/config.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:19:06 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-29 16:19:06 +0000
commitb7886a37105ccca5b5181f58c9988baee5badd3e (patch)
treede048956314791c88f13f62b30f1923e4ac9a3c6 /src/include/config.hh
parent96226e24b7f0856f2cd8f68e9c22adcd7d2946ad (diff)
rename file since it's now multilingual C++/C/Fortran
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@778 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/include/config.hh')
-rw-r--r--src/include/config.hh69
1 files changed, 0 insertions, 69 deletions
diff --git a/src/include/config.hh b/src/include/config.hh
deleted file mode 100644
index 09ed4a3..0000000
--- a/src/include/config.hh
+++ /dev/null
@@ -1,69 +0,0 @@
-/* config.hh -- compile-time configuration for AHFinderDirect */
-/* $Header$ */
-
-/*
- * This header file is #included by C++ and C files, and also by
- * Fortran 77 files which are run through a C-like preprocessor. Alas,
- * due to a Cactus bug, this means that all preprocessor commands in
- * Fortran sections of this file, must start in column 1. :( :(
- *
- * FIXME: should rename this to "config.h"
- */
-
-/*
- * prerequisites:
- * "cctk.h" or "fake_cctk.h"
- */
-
-/******************************************************************************/
-
-/*
- * definitions for C/C++ only
- */
-
-#ifdef CCODE
-typedef CCTK_REAL fp;
-
-/* Fortran 'integer' type */
-typedef CCTK_INT integer;
-#endif /* CCODE */
-
-/******************************************************************************/
-
-/*
- * definitions for C++, C, and Fortran
- */
-
-/*
- * FIXME: this assumes fp == C 'double'
- * CCTK_REAL_PRECISION_{4,8,16} are helpful, but not quite enough)
- */
-#undef FP_IS_FLOAT
-#define FP_IS_DOUBLE
-
-#if defined(FP_IS_FLOAT)
-#define FP_SCANF_FORMAT "%f"
-#elif defined(FP_IS_DOUBLE)
-#define FP_SCANF_FORMAT "%lf"
-#else
-#error "don't know fp datatype!"
-#endif
-
-/*
- * The angular finite differencing in our multipatch system can be
- * either 2nd order or 4th order, configurable here.
- */
-#ifdef FINITE_DIFF_ORDER
-/* someone (probably a Makefile) has already defined this */
-/* ==> leave it alone */
-#else
-#define FINITE_DIFF_ORDER 4
-#endif
-
-/*
- * What types of Jacobian matrix storage do we want to compile in
- * support for? N.b. each of these requires linking with the corresponding
- * linear-solver library; see "../make.configuration.defn" for details
- * on these libraries.
- */
-#define HAVE_DENSE_JACOBIAN