aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-05-10 22:29:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2007-05-10 22:29:00 +0000
commit110af7bc6df61403e0159f79676b4092e9b7ac01 (patch)
tree44e08073fabbd3a92a5006081078ad1888611718 /Carpet
parent5fa7f4fab331f53618268be3240bf47ef4f6b4ef (diff)
Carpet: Remove checks of recently removed parameters
darcs-hash:20070510222907-dae7b-746517e02346bd57765780d1b98b7b6bd3a7ee43.gz
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/Carpet/src/CarpetStartup.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/Carpet/Carpet/src/CarpetStartup.cc b/Carpet/Carpet/src/CarpetStartup.cc
index 934af95a3..8e49cd444 100644
--- a/Carpet/Carpet/src/CarpetStartup.cc
+++ b/Carpet/Carpet/src/CarpetStartup.cc
@@ -51,30 +51,6 @@ namespace Carpet {
CCTK_OverloadArrayGroupSizeB (ArrayGroupSizeB);
CCTK_OverloadQueryGroupStorageB (QueryGroupStorageB);
CCTK_OverloadGroupDynamicData (GroupDynamicData);
-
- // print warnings if the user set deprecated parameters in her/his parfile
- if (CCTK_ParameterQueryTimesSet ("minimise_outstanding_communications",
- "CarpetLib") > 0) {
- CCTK_WARN (CCTK_WARN_COMPLAIN,
- "You set the parameter 'CarpetLib::minimise_outstanding_communications'"
- " in your parfile. This parameter is deprecated and should not be used"
- " anymore. Use 'CarpetLib::use_collective_communication_buffers'"
- " instead.");
- }
- if (CCTK_ParameterQueryTimesSet ("combine_recv_send",
- "CarpetLib") > 0) {
- CCTK_WARN (CCTK_WARN_COMPLAIN,
- "You set the parameter 'CarpetLib::combine_recv_send'"
- " in your parfile. This parameter is deprecated and should not be used"
- " anymore.");
- }
- if (CCTK_ParameterQueryTimesSet ("use_lightweight_buffers",
- "CarpetLib") > 0) {
- CCTK_WARN (CCTK_WARN_COMPLAIN,
- "You set the parameter 'CarpetLib::use_lightweight_buffers'"
- " in your parfile. This parameter is deprecated and should not be used"
- " anymore.");
- }
return 0;
}