/*@@ @file InitSymBound.F90 @date @author Gabrielle Allen @desc Sets the symmetries across the coordinate axes @enddesc @@*/ #include "cctk.h" #include "cctk_arguments.h" /*@@ @routine WaveToyFreeF90_InitSymBound @date @author Gabrielle Allen @desc Sets the symmetries for Wave Toy @enddesc @calls @calledby @history @endhistory @@*/ subroutine WaveToyFreeF90_InitSymBound(CCTK_FARGUMENTS) implicit none DECLARE_CCTK_FARGUMENTS INTEGER, DIMENSION(3) :: sym = 1 call SetCartSymmetry(cctkGH, sym, 'wavetoy::phi') call SetCartSymmetry(cctkGH, sym, 'wavetoyfreef90::phi_tmp') end subroutine WaveToyFreeF90_InitSymbound