aboutsummaryrefslogtreecommitdiff
path: root/mg2d_test.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2019-02-08 08:48:28 +0100
committerAnton Khirnov <anton@khirnov.net>2019-02-08 08:49:44 +0100
commitf1d308e6c7a394256d8ede2979c80d57e3868efa (patch)
tree27560a6c431ddc3c03e81ddc1cac92d3b4e18846 /mg2d_test.c
parent1e3d13b0f885479fca1e02bf4fdbdba219dc0578 (diff)
Rename fixdiff boundary condition to reflect.
This is what it actually does, we do not support setting arbitrary derivative values. API bump.
Diffstat (limited to 'mg2d_test.c')
-rw-r--r--mg2d_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg2d_test.c b/mg2d_test.c
index a60c5b2..23e52bb 100644
--- a/mg2d_test.c
+++ b/mg2d_test.c
@@ -75,7 +75,7 @@ static double sol_11(double x, double y)
{
return M_PI * M_PI * sin(M_PI * x) * sin(M_PI * y);
}
-#define BC_TYPE MG2D_BC_TYPE_FIXDIFF
+#define BC_TYPE MG2D_BC_TYPE_REFLECT
#endif
static double (*sol[MG2D_DIFF_COEFF_NB])(double x, double y) = {