Skip to content

Commit

Permalink
Replace use_psync==1 with use_psync and use_psync==0 with !use_psync
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenrbrandt committed Apr 27, 2020
1 parent 3bb4329 commit 6e40688
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion GaugeWave/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "GaugeWave"))
} "GaugeWave_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule GaugeWave_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down
2 changes: 1 addition & 1 deletion KerrSchild/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "KerrSchild"))
} "KerrSchild_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule KerrSchild_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down
2 changes: 1 addition & 1 deletion Minkowski/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "Minkowski"))
} "Minkowski_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule Minkowski_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down
2 changes: 1 addition & 1 deletion ModifiedSchwarzschildBL/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "ModifiedSchwarzschildBL"))
} "ModifiedSchwarzschildBL_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule ModifiedSchwarzschildBL_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down
2 changes: 1 addition & 1 deletion ShiftedGaugeWave/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "ShiftedGaugeWave"))
} "ShiftedGaugeWave_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule ShiftedGaugeWave_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down
2 changes: 1 addition & 1 deletion Vaidya2/schedule.ccl
Expand Up @@ -122,7 +122,7 @@ if (CCTK_EQUALS(exact_method, "Vaidya2"))
} "Vaidya2_exact"
}

if(use_psync == 1) {
if(use_psync) {
schedule Vaidya2_SelectBoundConds in PreSync_Selection
{
LANG: C
Expand Down

2 comments on commit 6e40688

@ianhinder
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is code generated automatically by Kranc - it will be rewritten when the code is regenerated.

@stevenrbrandt
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ianhinder yes, I know, I realize this change will go away when we regen for the release. I only replaced this by hand here so that when I grepped the codebase I saw nothing.

Please sign in to comment.