aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/apply.c3
-rw-r--r--src/interpolate.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/apply.c b/src/apply.c
index be20dee..1d90697 100644
--- a/src/apply.c
+++ b/src/apply.c
@@ -269,7 +269,8 @@ BndReflectVI (cGH const * restrict const cctkGH,
assert (numvars == 3);
ttype = VECTOR;
tcomponent = vi - firstvar;
- } else if (CCTK_EQUALS (tensortypealias, "dd_sym")) {
+ } else if (CCTK_EQUALS (tensortypealias, "uu_sym")
+ || CCTK_EQUALS (tensortypealias, "dd_sym")) {
/* symmetric tensor */
assert (numvars == 6);
ttype = TENSOR;
diff --git a/src/interpolate.c b/src/interpolate.c
index 684dc1f..e1fe564 100644
--- a/src/interpolate.c
+++ b/src/interpolate.c
@@ -241,7 +241,8 @@ ReflectionSymmetry_Interpolate (CCTK_POINTER_TO_CONST restrict const cctkGH_,
assert (numvars == 3);
ttype = VECTOR;
tcomponent = vi - firstvar;
- } else if (CCTK_EQUALS (tensortypealias, "dd_sym")) {
+ } else if (CCTK_EQUALS (tensortypealias, "uu_sym")
+ || CCTK_EQUALS (tensortypealias, "dd_sym")) {
/* symmetric tensor */
assert (numvars == 6);
ttype = TENSOR;