From: Peter Munch Date: Sat, 27 Jun 2020 10:18:50 +0000 (+0200) Subject: Rename TET to simplex X-Git-Tag: v9.3.0-rc1~1355^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e400edf44bcb52439430a3a1933578a6fb4fe53;p=dealii.git Rename TET to simplex --- diff --git a/cmake/setup_cached_variables.cmake b/cmake/setup_cached_variables.cmake index b1bb985043..3c31c6b11e 100644 --- a/cmake/setup_cached_variables.cmake +++ b/cmake/setup_cached_variables.cmake @@ -372,11 +372,11 @@ OPTION(DEAL_II_WITH_64BIT_INDICES ) LIST(APPEND DEAL_II_FEATURES 64BIT_INDICES) -OPTION(DEAL_II_WITH_TET_SUPPORT +OPTION(DEAL_II_WITH_SIMPLEX_SUPPORT "If set to ON, triangulations with triangle and tetrahedron cells are supported in addition to quadrilateral- and hexahedra-only triangulations." OFF ) -LIST(APPEND DEAL_II_FEATURES TET_SUPPORT) +LIST(APPEND DEAL_II_FEATURES SIMPLEX_SUPPORT) OPTION(DEAL_II_WITH_COMPLEX_VALUES "If set to OFF, the classes that take a number type are not explicitly instantiated for std::complex and std::complex. This effectively disables the support for computing with complex values. If PETSc is built with complex scalar type, this option must be ON." diff --git a/include/deal.II/base/config.h.in b/include/deal.II/base/config.h.in index db6b33f397..21b8be08e9 100644 --- a/include/deal.II/base/config.h.in +++ b/include/deal.II/base/config.h.in @@ -54,11 +54,11 @@ #cmakedefine DEAL_II_WITH_P4EST #cmakedefine DEAL_II_WITH_PETSC #cmakedefine DEAL_II_WITH_SCALAPACK +#cmakedefine DEAL_II_WITH_SIMPLEX_SUPPORT #cmakedefine DEAL_II_WITH_SLEPC #cmakedefine DEAL_II_WITH_SUNDIALS #cmakedefine DEAL_II_WITH_SYMENGINE #cmakedefine DEAL_II_WITH_TASKFLOW -#cmakedefine DEAL_II_WITH_TET_SUPPORT #cmakedefine DEAL_II_WITH_TBB #cmakedefine DEAL_II_WITH_TRILINOS #cmakedefine DEAL_II_WITH_UMFPACK diff --git a/tests/tet/CMakeLists.txt b/tests/simplex/CMakeLists.txt similarity index 100% rename from tests/tet/CMakeLists.txt rename to tests/simplex/CMakeLists.txt diff --git a/tests/tet/dummy.cc b/tests/simplex/dummy.cc similarity index 77% rename from tests/tet/dummy.cc rename to tests/simplex/dummy.cc index 8c0ca11ce3..4a56f07a91 100644 --- a/tests/tet/dummy.cc +++ b/tests/simplex/dummy.cc @@ -15,7 +15,7 @@ -// Dummy TET test. +// Dummy simplex test. #include "../tests.h" @@ -24,9 +24,9 @@ main() { initlog(); -#ifdef DEAL_II_WITH_TET_SUPPORT - deallog << "deal.II is configured with TET support." << std::endl; +#ifdef DEAL_II_WITH_SIMPLEX_SUPPORT + deallog << "deal.II is configured with simplex support." << std::endl; #else - deallog << "deal.II is configured without TET support." << std::endl; + deallog << "deal.II is configured without simplex support." << std::endl; #endif } diff --git a/tests/simplex/dummy.with_simplex_support=on.output b/tests/simplex/dummy.with_simplex_support=on.output new file mode 100644 index 0000000000..ae6ce2e827 --- /dev/null +++ b/tests/simplex/dummy.with_simplex_support=on.output @@ -0,0 +1,2 @@ + +DEAL::deal.II is configured with simplex support. diff --git a/tests/tet/dummy.with_tet_support=on.output b/tests/tet/dummy.with_tet_support=on.output deleted file mode 100644 index b8b2bc8492..0000000000 --- a/tests/tet/dummy.with_tet_support=on.output +++ /dev/null @@ -1,2 +0,0 @@ - -DEAL::deal.II is configured with TET support.