From 8bdcdbc04913df2d0d4ce4d1d8d85c8da2185e59 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Wed, 26 Sep 2018 08:56:26 -0500 Subject: increase number of points in cos(theta) interpolation to 1000 --- src/scattering.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scattering.c b/src/scattering.c index 433387d..c95f31e 100644 --- a/src/scattering.c +++ b/src/scattering.c @@ -16,7 +16,7 @@ static double xlo = -1.0; static double xhi = 1.0; -static size_t nx = 200; +static size_t nx = 1000; static double ylo = 0.0; static double yhi = 1.0; static size_t ny = 1000; -- cgit