From fb7b97543a1a5308ab161cde19b35f1911b934dd Mon Sep 17 00:00:00 2001 From: hrocho Date: Sat, 3 Feb 2018 15:35:02 +0100 Subject: [PATCH] storage num increased --- constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.h b/constants.h index d53b510..bf00628 100644 --- a/constants.h +++ b/constants.h @@ -8,7 +8,7 @@ constexpr double Ezero = 1E-3; // lowest E to calculate, below taken as 0 constexpr double logEmin = -3; // log of minimum energy constexpr double logEmax = 5.0; // log of max energy constexpr int max_datapoints = 500; // how many datapoints between logEmin and logEmax -constexpr int max_storage_data = 50; // number of datapoints which can be stored in cache +constexpr int max_storage_data = 100; // number of datapoints which can be stored in cache constexpr double numeric_epsilon = std::numeric_limits::epsilon(); /// required integration precision (relative units)