aboutsummaryrefslogtreecommitdiff
path: root/src/WaveToy.F90
diff options
context:
space:
mode:
authorrideout <rideout@daab82bb-f315-4ad1-b6d0-9353ff8b6e27>2003-05-15 09:22:32 +0000
committerrideout <rideout@daab82bb-f315-4ad1-b6d0-9353ff8b6e27>2003-05-15 09:22:32 +0000
commit513fa03519c4d028ab6e37f794d2d34b6c7504af (patch)
tree6fb406db987fc3ec7f5be954873649008133877a /src/WaveToy.F90
parentc4d65b3f7d7b23456f0b928588da3c7cad25f447 (diff)
Setting keyword parameter bound to "none" no longer selects phi for
the "None" boundary condition, so that other thorns can select phi for their own favorite boundary condition. Fixes SampleBoundary testsuite. git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveToyFreeF90/trunk@55 daab82bb-f315-4ad1-b6d0-9353ff8b6e27
Diffstat (limited to 'src/WaveToy.F90')
-rw-r--r--src/WaveToy.F903
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WaveToy.F90 b/src/WaveToy.F90
index 4e53edb..ae52391 100644
--- a/src/WaveToy.F90
+++ b/src/WaveToy.F90
@@ -150,8 +150,7 @@ subroutine WaveToyFreeF90_Boundaries(CCTK_ARGUMENTS)
ierr = Boundary_SelectVarForBC(cctkGH, CCTK_ALL_FACES, 1, -1, &
"wavetoy::phi", "Scalar");
else if (CCTK_EQUALS(bound,"none")) then
- ierr = Boundary_SelectVarForBC(cctkGH, CCTK_ALL_FACES, 1, -1, &
- "wavetoy::phi", "None");
+! Do nothing
else
call CCTK_WARN(0,"Unrecognized boundary condition")
end if