aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-06-04 11:53:08 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-06-04 11:53:08 +0000
commitfe4d71a8862dcffdebd8ea675d2cbaf2f8af72ff (patch)
tree81bf2067a02f495733f475d1d4ba3295756058e2 /src/include
parent1371bfe1c73325e32ba28125a0ffbbf3bf026749 (diff)
new configuration options for sparse-matrix libraries
-- new default is to compile in ILUCG and UMFPACK, but not LAPACK git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1096 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/include')
-rw-r--r--src/include/config.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/config.h b/src/include/config.h
index 2655296..0f92db2 100644
--- a/src/include/config.h
+++ b/src/include/config.h
@@ -41,8 +41,9 @@ typedef CCTK_INT integer;
/* CCTK_VWarn() "warning level" for fatal errors (terminate execution) */
/* note low-level software uses error_exit() instead of CCTK_VWarn(), */
-/* with exit codes defined in "config.h" */
+/* with exit codes defined in "stdc.h" */
#define FATAL_ERROR (-1)
+#define WARNING_LEVEL (1)
/******************************************************************************/
@@ -97,13 +98,13 @@ typedef CCTK_INT integer;
*/
/* store as (Fortran) dense matrix, solve with LAPACK */
-#undef HAVE_DENSE_JACOBIAN__LAPACK
+#define HAVE_DENSE_JACOBIAN__LAPACK
/* store as row-oriented sparse matrix, solve with ILUCG */
#define HAVE_ROW_SPARSE_JACOBIAN__ILUCG
/* store as row-oriented sparse matrix, solve with UMFPACK */
-#undef HAVE_ROW_SPARSE_JACOBIAN__UMFPACK
+#define HAVE_ROW_SPARSE_JACOBIAN__UMFPACK
/******************************************************************************/
/******************************************************************************/