From 8bbb8598e279c86088fadb008381e0c5c361a656 Mon Sep 17 00:00:00 2001 From: the-florist Date: Mon, 9 Sep 2024 11:58:21 +0100 Subject: [PATCH] Added default to the symmetry_correction flag --- Source/GRChomboCore/BoundaryConditions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/GRChomboCore/BoundaryConditions.cpp b/Source/GRChomboCore/BoundaryConditions.cpp index 35f4b50c0..4531b1349 100644 --- a/Source/GRChomboCore/BoundaryConditions.cpp +++ b/Source/GRChomboCore/BoundaryConditions.cpp @@ -143,7 +143,7 @@ void BoundaryConditions::params_t::read_params(GRParmParse &pp) if (reflective_boundaries_exist) { int symmetry_correction = 0; - pp.load("symmetry_correction", symmetry_correction); + pp.load("symmetry_correction", symmetry_correction, 0); if (symmetry_correction != 0) { for (int d = 0; d < CH_SPACEDIM; d++)