From 169def8fd25744599ac484fbe03df5f311bf6ff1 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 16 Jan 2020 14:25:30 -0700 Subject: [PATCH] Adjust the number of samples to be computed. --- MCMC-Laplace/mcmc-laplace.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ )); } -- 2.39.5