aboutsummaryrefslogtreecommitdiff
path: root/ML_BSSN/src/Boundaries.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ML_BSSN/src/Boundaries.cc')
-rw-r--r--ML_BSSN/src/Boundaries.cc138
1 files changed, 69 insertions, 69 deletions
diff --git a/ML_BSSN/src/Boundaries.cc b/ML_BSSN/src/Boundaries.cc
index a7c5010..98b7911 100644
--- a/ML_BSSN/src/Boundaries.cc
+++ b/ML_BSSN/src/Boundaries.cc
@@ -30,7 +30,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
- CCTK_INT ierr = 0;
+ CCTK_INT ierr CCTK_ATTRIBUTE_UNUSED = 0;
if (CCTK_EQUALS(ML_curv_bound, "none" ) ||
CCTK_EQUALS(ML_curv_bound, "static") ||
@@ -409,7 +409,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_curv_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_curv_bound = -1;
+ static CCTK_INT handle_ML_curv_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_curv_bound < 0) handle_ML_curv_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_curv_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_curv_bound , ML_curv_bound_limit, "LIMIT") < 0)
@@ -428,7 +428,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_dtlapse_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_dtlapse_bound = -1;
+ static CCTK_INT handle_ML_dtlapse_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_dtlapse_bound < 0) handle_ML_dtlapse_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_dtlapse_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_dtlapse_bound , ML_dtlapse_bound_limit, "LIMIT") < 0)
@@ -447,7 +447,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_dtshift_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_dtshift_bound = -1;
+ static CCTK_INT handle_ML_dtshift_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_dtshift_bound < 0) handle_ML_dtshift_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_dtshift_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_dtshift_bound , ML_dtshift_bound_limit, "LIMIT") < 0)
@@ -466,7 +466,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_Gamma_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_Gamma_bound = -1;
+ static CCTK_INT handle_ML_Gamma_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_Gamma_bound < 0) handle_ML_Gamma_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_Gamma_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_Gamma_bound , ML_Gamma_bound_limit, "LIMIT") < 0)
@@ -485,7 +485,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_lapse_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_lapse_bound = -1;
+ static CCTK_INT handle_ML_lapse_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_lapse_bound < 0) handle_ML_lapse_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_lapse_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_lapse_bound , ML_lapse_bound_limit, "LIMIT") < 0)
@@ -504,7 +504,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_log_confac_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_log_confac_bound = -1;
+ static CCTK_INT handle_ML_log_confac_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_log_confac_bound < 0) handle_ML_log_confac_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_log_confac_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_log_confac_bound , ML_log_confac_bound_limit, "LIMIT") < 0)
@@ -523,7 +523,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_metric_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_metric_bound = -1;
+ static CCTK_INT handle_ML_metric_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_metric_bound < 0) handle_ML_metric_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_metric_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_metric_bound , ML_metric_bound_limit, "LIMIT") < 0)
@@ -542,7 +542,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_shift_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_shift_bound = -1;
+ static CCTK_INT handle_ML_shift_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_shift_bound < 0) handle_ML_shift_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_shift_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_shift_bound , ML_shift_bound_limit, "LIMIT") < 0)
@@ -561,7 +561,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_trace_curv_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_ML_trace_curv_bound = -1;
+ static CCTK_INT handle_ML_trace_curv_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_trace_curv_bound < 0) handle_ML_trace_curv_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_trace_curv_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_trace_curv_bound , ML_trace_curv_bound_limit, "LIMIT") < 0)
@@ -580,7 +580,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At11_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At11_bound = -1;
+ static CCTK_INT handle_At11_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At11_bound < 0) handle_At11_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At11_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At11_bound , At11_bound_limit, "LIMIT") < 0)
@@ -599,7 +599,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At12_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At12_bound = -1;
+ static CCTK_INT handle_At12_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At12_bound < 0) handle_At12_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At12_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At12_bound , At12_bound_limit, "LIMIT") < 0)
@@ -618,7 +618,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At13_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At13_bound = -1;
+ static CCTK_INT handle_At13_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At13_bound < 0) handle_At13_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At13_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At13_bound , At13_bound_limit, "LIMIT") < 0)
@@ -637,7 +637,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At22_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At22_bound = -1;
+ static CCTK_INT handle_At22_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At22_bound < 0) handle_At22_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At22_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At22_bound , At22_bound_limit, "LIMIT") < 0)
@@ -656,7 +656,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At23_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At23_bound = -1;
+ static CCTK_INT handle_At23_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At23_bound < 0) handle_At23_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At23_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At23_bound , At23_bound_limit, "LIMIT") < 0)
@@ -675,7 +675,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At33_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_At33_bound = -1;
+ static CCTK_INT handle_At33_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At33_bound < 0) handle_At33_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At33_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At33_bound , At33_bound_limit, "LIMIT") < 0)
@@ -694,7 +694,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(A_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_A_bound = -1;
+ static CCTK_INT handle_A_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_A_bound < 0) handle_A_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_A_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_A_bound , A_bound_limit, "LIMIT") < 0)
@@ -713,7 +713,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B1_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_B1_bound = -1;
+ static CCTK_INT handle_B1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B1_bound < 0) handle_B1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B1_bound , B1_bound_limit, "LIMIT") < 0)
@@ -732,7 +732,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B2_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_B2_bound = -1;
+ static CCTK_INT handle_B2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B2_bound < 0) handle_B2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B2_bound , B2_bound_limit, "LIMIT") < 0)
@@ -751,7 +751,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B3_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_B3_bound = -1;
+ static CCTK_INT handle_B3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B3_bound < 0) handle_B3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B3_bound , B3_bound_limit, "LIMIT") < 0)
@@ -770,7 +770,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt1_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_Xt1_bound = -1;
+ static CCTK_INT handle_Xt1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt1_bound < 0) handle_Xt1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt1_bound , Xt1_bound_limit, "LIMIT") < 0)
@@ -789,7 +789,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt2_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_Xt2_bound = -1;
+ static CCTK_INT handle_Xt2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt2_bound < 0) handle_Xt2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt2_bound , Xt2_bound_limit, "LIMIT") < 0)
@@ -808,7 +808,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt3_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_Xt3_bound = -1;
+ static CCTK_INT handle_Xt3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt3_bound < 0) handle_Xt3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt3_bound , Xt3_bound_limit, "LIMIT") < 0)
@@ -827,7 +827,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(alpha_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_alpha_bound = -1;
+ static CCTK_INT handle_alpha_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_alpha_bound < 0) handle_alpha_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_alpha_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_alpha_bound , alpha_bound_limit, "LIMIT") < 0)
@@ -846,7 +846,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(phi_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_phi_bound = -1;
+ static CCTK_INT handle_phi_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_phi_bound < 0) handle_phi_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_phi_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_phi_bound , phi_bound_limit, "LIMIT") < 0)
@@ -865,7 +865,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt11_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt11_bound = -1;
+ static CCTK_INT handle_gt11_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt11_bound < 0) handle_gt11_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt11_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt11_bound , gt11_bound_limit, "LIMIT") < 0)
@@ -884,7 +884,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt12_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt12_bound = -1;
+ static CCTK_INT handle_gt12_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt12_bound < 0) handle_gt12_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt12_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt12_bound , gt12_bound_limit, "LIMIT") < 0)
@@ -903,7 +903,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt13_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt13_bound = -1;
+ static CCTK_INT handle_gt13_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt13_bound < 0) handle_gt13_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt13_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt13_bound , gt13_bound_limit, "LIMIT") < 0)
@@ -922,7 +922,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt22_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt22_bound = -1;
+ static CCTK_INT handle_gt22_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt22_bound < 0) handle_gt22_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt22_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt22_bound , gt22_bound_limit, "LIMIT") < 0)
@@ -941,7 +941,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt23_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt23_bound = -1;
+ static CCTK_INT handle_gt23_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt23_bound < 0) handle_gt23_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt23_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt23_bound , gt23_bound_limit, "LIMIT") < 0)
@@ -960,7 +960,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt33_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_gt33_bound = -1;
+ static CCTK_INT handle_gt33_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt33_bound < 0) handle_gt33_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt33_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt33_bound , gt33_bound_limit, "LIMIT") < 0)
@@ -979,7 +979,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta1_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_beta1_bound = -1;
+ static CCTK_INT handle_beta1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta1_bound < 0) handle_beta1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta1_bound , beta1_bound_limit, "LIMIT") < 0)
@@ -998,7 +998,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta2_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_beta2_bound = -1;
+ static CCTK_INT handle_beta2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta2_bound < 0) handle_beta2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta2_bound , beta2_bound_limit, "LIMIT") < 0)
@@ -1017,7 +1017,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta3_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_beta3_bound = -1;
+ static CCTK_INT handle_beta3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta3_bound < 0) handle_beta3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta3_bound , beta3_bound_limit, "LIMIT") < 0)
@@ -1036,7 +1036,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(trK_bound, "radiative"))
{
/* select radiation boundary condition */
- static CCTK_INT handle_trK_bound = -1;
+ static CCTK_INT handle_trK_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_trK_bound < 0) handle_trK_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_trK_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_trK_bound , trK_bound_limit, "LIMIT") < 0)
@@ -1055,7 +1055,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_curv_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_curv_bound = -1;
+ static CCTK_INT handle_ML_curv_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_curv_bound < 0) handle_ML_curv_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_curv_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_curv_bound ,ML_curv_bound_scalar, "SCALAR") < 0)
@@ -1072,7 +1072,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_dtlapse_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_dtlapse_bound = -1;
+ static CCTK_INT handle_ML_dtlapse_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_dtlapse_bound < 0) handle_ML_dtlapse_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_dtlapse_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_dtlapse_bound ,ML_dtlapse_bound_scalar, "SCALAR") < 0)
@@ -1089,7 +1089,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_dtshift_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_dtshift_bound = -1;
+ static CCTK_INT handle_ML_dtshift_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_dtshift_bound < 0) handle_ML_dtshift_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_dtshift_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_dtshift_bound ,ML_dtshift_bound_scalar, "SCALAR") < 0)
@@ -1106,7 +1106,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_Gamma_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_Gamma_bound = -1;
+ static CCTK_INT handle_ML_Gamma_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_Gamma_bound < 0) handle_ML_Gamma_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_Gamma_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_Gamma_bound ,ML_Gamma_bound_scalar, "SCALAR") < 0)
@@ -1123,7 +1123,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_lapse_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_lapse_bound = -1;
+ static CCTK_INT handle_ML_lapse_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_lapse_bound < 0) handle_ML_lapse_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_lapse_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_lapse_bound ,ML_lapse_bound_scalar, "SCALAR") < 0)
@@ -1140,7 +1140,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_log_confac_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_log_confac_bound = -1;
+ static CCTK_INT handle_ML_log_confac_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_log_confac_bound < 0) handle_ML_log_confac_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_log_confac_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_log_confac_bound ,ML_log_confac_bound_scalar, "SCALAR") < 0)
@@ -1157,7 +1157,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_metric_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_metric_bound = -1;
+ static CCTK_INT handle_ML_metric_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_metric_bound < 0) handle_ML_metric_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_metric_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_metric_bound ,ML_metric_bound_scalar, "SCALAR") < 0)
@@ -1174,7 +1174,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_shift_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_shift_bound = -1;
+ static CCTK_INT handle_ML_shift_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_shift_bound < 0) handle_ML_shift_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_shift_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_shift_bound ,ML_shift_bound_scalar, "SCALAR") < 0)
@@ -1191,7 +1191,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(ML_trace_curv_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_ML_trace_curv_bound = -1;
+ static CCTK_INT handle_ML_trace_curv_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_ML_trace_curv_bound < 0) handle_ML_trace_curv_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_ML_trace_curv_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_ML_trace_curv_bound ,ML_trace_curv_bound_scalar, "SCALAR") < 0)
@@ -1208,7 +1208,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At11_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At11_bound = -1;
+ static CCTK_INT handle_At11_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At11_bound < 0) handle_At11_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At11_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At11_bound ,At11_bound_scalar, "SCALAR") < 0)
@@ -1225,7 +1225,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At12_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At12_bound = -1;
+ static CCTK_INT handle_At12_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At12_bound < 0) handle_At12_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At12_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At12_bound ,At12_bound_scalar, "SCALAR") < 0)
@@ -1242,7 +1242,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At13_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At13_bound = -1;
+ static CCTK_INT handle_At13_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At13_bound < 0) handle_At13_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At13_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At13_bound ,At13_bound_scalar, "SCALAR") < 0)
@@ -1259,7 +1259,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At22_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At22_bound = -1;
+ static CCTK_INT handle_At22_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At22_bound < 0) handle_At22_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At22_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At22_bound ,At22_bound_scalar, "SCALAR") < 0)
@@ -1276,7 +1276,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At23_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At23_bound = -1;
+ static CCTK_INT handle_At23_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At23_bound < 0) handle_At23_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At23_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At23_bound ,At23_bound_scalar, "SCALAR") < 0)
@@ -1293,7 +1293,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(At33_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_At33_bound = -1;
+ static CCTK_INT handle_At33_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_At33_bound < 0) handle_At33_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_At33_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_At33_bound ,At33_bound_scalar, "SCALAR") < 0)
@@ -1310,7 +1310,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(A_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_A_bound = -1;
+ static CCTK_INT handle_A_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_A_bound < 0) handle_A_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_A_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_A_bound ,A_bound_scalar, "SCALAR") < 0)
@@ -1327,7 +1327,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B1_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_B1_bound = -1;
+ static CCTK_INT handle_B1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B1_bound < 0) handle_B1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B1_bound ,B1_bound_scalar, "SCALAR") < 0)
@@ -1344,7 +1344,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B2_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_B2_bound = -1;
+ static CCTK_INT handle_B2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B2_bound < 0) handle_B2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B2_bound ,B2_bound_scalar, "SCALAR") < 0)
@@ -1361,7 +1361,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(B3_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_B3_bound = -1;
+ static CCTK_INT handle_B3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_B3_bound < 0) handle_B3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_B3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_B3_bound ,B3_bound_scalar, "SCALAR") < 0)
@@ -1378,7 +1378,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt1_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_Xt1_bound = -1;
+ static CCTK_INT handle_Xt1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt1_bound < 0) handle_Xt1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt1_bound ,Xt1_bound_scalar, "SCALAR") < 0)
@@ -1395,7 +1395,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt2_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_Xt2_bound = -1;
+ static CCTK_INT handle_Xt2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt2_bound < 0) handle_Xt2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt2_bound ,Xt2_bound_scalar, "SCALAR") < 0)
@@ -1412,7 +1412,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(Xt3_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_Xt3_bound = -1;
+ static CCTK_INT handle_Xt3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_Xt3_bound < 0) handle_Xt3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_Xt3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_Xt3_bound ,Xt3_bound_scalar, "SCALAR") < 0)
@@ -1429,7 +1429,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(alpha_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_alpha_bound = -1;
+ static CCTK_INT handle_alpha_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_alpha_bound < 0) handle_alpha_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_alpha_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_alpha_bound ,alpha_bound_scalar, "SCALAR") < 0)
@@ -1446,7 +1446,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(phi_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_phi_bound = -1;
+ static CCTK_INT handle_phi_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_phi_bound < 0) handle_phi_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_phi_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_phi_bound ,phi_bound_scalar, "SCALAR") < 0)
@@ -1463,7 +1463,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt11_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt11_bound = -1;
+ static CCTK_INT handle_gt11_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt11_bound < 0) handle_gt11_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt11_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt11_bound ,gt11_bound_scalar, "SCALAR") < 0)
@@ -1480,7 +1480,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt12_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt12_bound = -1;
+ static CCTK_INT handle_gt12_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt12_bound < 0) handle_gt12_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt12_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt12_bound ,gt12_bound_scalar, "SCALAR") < 0)
@@ -1497,7 +1497,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt13_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt13_bound = -1;
+ static CCTK_INT handle_gt13_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt13_bound < 0) handle_gt13_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt13_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt13_bound ,gt13_bound_scalar, "SCALAR") < 0)
@@ -1514,7 +1514,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt22_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt22_bound = -1;
+ static CCTK_INT handle_gt22_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt22_bound < 0) handle_gt22_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt22_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt22_bound ,gt22_bound_scalar, "SCALAR") < 0)
@@ -1531,7 +1531,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt23_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt23_bound = -1;
+ static CCTK_INT handle_gt23_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt23_bound < 0) handle_gt23_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt23_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt23_bound ,gt23_bound_scalar, "SCALAR") < 0)
@@ -1548,7 +1548,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(gt33_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_gt33_bound = -1;
+ static CCTK_INT handle_gt33_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_gt33_bound < 0) handle_gt33_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_gt33_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_gt33_bound ,gt33_bound_scalar, "SCALAR") < 0)
@@ -1565,7 +1565,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta1_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_beta1_bound = -1;
+ static CCTK_INT handle_beta1_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta1_bound < 0) handle_beta1_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta1_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta1_bound ,beta1_bound_scalar, "SCALAR") < 0)
@@ -1582,7 +1582,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta2_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_beta2_bound = -1;
+ static CCTK_INT handle_beta2_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta2_bound < 0) handle_beta2_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta2_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta2_bound ,beta2_bound_scalar, "SCALAR") < 0)
@@ -1599,7 +1599,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(beta3_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_beta3_bound = -1;
+ static CCTK_INT handle_beta3_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_beta3_bound < 0) handle_beta3_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_beta3_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_beta3_bound ,beta3_bound_scalar, "SCALAR") < 0)
@@ -1616,7 +1616,7 @@ extern "C" void ML_BSSN_SelectBoundConds(CCTK_ARGUMENTS)
if (CCTK_EQUALS(trK_bound, "scalar"))
{
/* select scalar boundary condition */
- static CCTK_INT handle_trK_bound = -1;
+ static CCTK_INT handle_trK_bound CCTK_ATTRIBUTE_UNUSED = -1;
if (handle_trK_bound < 0) handle_trK_bound = Util_TableCreate(UTIL_TABLE_FLAGS_CASE_INSENSITIVE);
if (handle_trK_bound < 0) CCTK_WARN(0, "could not create table!");
if (Util_TableSetReal(handle_trK_bound ,trK_bound_scalar, "SCALAR") < 0)