Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Z4c: remove unnecessary sync after commit e3251873 "NewRadX: assert i… #36

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions Z4c/schedule.ccl
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ SCHEDULE Z4c_RHS IN Z4c_RHSGroup
WRITES: Theta_rhs(interior)
WRITES: alphaG_rhs(interior)
WRITES: betaG_rhs(interior)
SYNC: chi_rhs
SYNC: gamma_tilde_rhs
SYNC: K_hat_rhs
SYNC: A_tilde_rhs
SYNC: Gam_tilde_rhs
SYNC: Theta_rhs
SYNC: alphaG_rhs
SYNC: betaG_rhs
#SYNC: chi_rhs
#SYNC: gamma_tilde_rhs
#SYNC: K_hat_rhs
#SYNC: A_tilde_rhs
#SYNC: Gam_tilde_rhs
#SYNC: Theta_rhs
#SYNC: alphaG_rhs
#SYNC: betaG_rhs
} "Calculate Z4c RHS"

if (CCTK_Equals(boundary_conditions, "NewRadX")) {
Expand All @@ -269,14 +269,14 @@ if (CCTK_Equals(boundary_conditions, "NewRadX")) {
READS: Theta(everywhere)
READS: alphaG(everywhere)
READS: betaG(everywhere)
READS: chi_rhs(everywhere)
READS: gamma_tilde_rhs(everywhere)
READS: K_hat_rhs(everywhere)
READS: A_tilde_rhs(everywhere)
READS: Gam_tilde_rhs(everywhere)
READS: Theta_rhs(everywhere)
READS: alphaG_rhs(everywhere)
READS: betaG_rhs(everywhere)
READS: chi_rhs(interior)
READS: gamma_tilde_rhs(interior)
READS: K_hat_rhs(interior)
READS: A_tilde_rhs(interior)
READS: Gam_tilde_rhs(interior)
READS: Theta_rhs(interior)
READS: alphaG_rhs(interior)
READS: betaG_rhs(interior)
WRITES: chi_rhs(interior)
WRITES: gamma_tilde_rhs(interior)
WRITES: K_hat_rhs(interior)
Expand Down
Loading