From 14c7c76614c56f1e96b4e8800c3cd489295a7e52 Mon Sep 17 00:00:00 2001 From: Cory Date: Sun, 3 Dec 2023 16:45:04 +0100 Subject: [PATCH] Change output --- src/time.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/time.cpp b/src/time.cpp index 00f3327..dc18ca0 100644 --- a/src/time.cpp +++ b/src/time.cpp @@ -30,7 +30,7 @@ void time_lattice_sizes() t0 = omp_get_wtime(); montecarlo::phase_transition(L, 2.1, 2.4, 40, 100000, montecarlo::mcmc_parallel, - "output/garbage/null.txt"); + "/dev/null"); t1 = omp_get_wtime(); ofile << utils::scientific_format(L) << ',' << utils::scientific_format(t1 - t0) << '\n'; @@ -52,7 +52,7 @@ void time_sample_sizes() t0 = omp_get_wtime(); montecarlo::phase_transition(20, 2.1, 2.4, 40, samples, montecarlo::mcmc_parallel, - "output/garbage/null.txt"); + "/dev/null"); t1 = omp_get_wtime(); ofile << utils::scientific_format(samples) << ',' << utils::scientific_format(t1 - t0) << '\n';