/*@@ @file InitSymBound.F77 @date @author Gabrielle Allen @desc Sets the symmetries for Wave Toy @enddesc @@*/ #include "cctk.h" #include "cctk_Arguments.h" /*@@ @routine WaveToyF77_InitSymBound @date @author Gabrielle Allen @desc Sets the symmetries for Wave Toy @enddesc @calls @calledby @history @endhistory @@*/ subroutine WaveToyF77_InitSymBound(CCTK_FARGUMENTS) implicit none DECLARE_CCTK_FARGUMENTS INTEGER one PARAMETER (one = 1) INTEGER sym(3) sym(1) = one sym(2) = one sym(3) = one call SetCartSymmetry(cctkGH, sym,'wavetoy::phi') call SetCartSymmetry(cctkGH, sym,'wavetoyf77::phi_next') return end