From: Wolfgang Bangerth Date: Thu, 16 Jan 2020 21:25:30 +0000 (-0700) Subject: Adjust the number of samples to be computed. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=169def8fd25744599ac484fbe03df5f311bf6ff1;p=code-gallery.git Adjust the number of samples to be computed. --- diff --git a/MCMC-Laplace/mcmc-laplace.cc b/MCMC-Laplace/mcmc-laplace.cc index 80e8656..3fd7808 100644 --- a/MCMC-Laplace/mcmc-laplace.cc +++ b/MCMC-Laplace/mcmc-laplace.cc @@ -856,6 +856,6 @@ int main() sampler.sample(starting_coefficients, (testing ? 250 * 40 /* takes 40 seconds */ : - 250 * 60 * 60 * 24 * 30 /* takes a month */ + 100000000 /* takes 6 days */ )); }