tminor column width fix - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
(HTM) git clone git://src.adamsgaard.dk/sphere
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit 22dd69e51e11b55aebc4cb0284a65a71170b774d
(DIR) parent ce8f578633d5459e3b194d1b151b7331a0c9da7d
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Thu, 1 May 2014 12:21:41 +0200
minor column width fix
Diffstat:
M src/device.cu | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/src/device.cu b/src/device.cu
t@@ -1291,7 +1291,8 @@ __host__ void DEM::startTime()
// Write the Jacobi iteration number and maximum value
// of the normalized residual to the log file
if (write_res_log == 1)
- reslog << nijac << '\t' << max_norm_res << std::endl;
+ reslog << nijac << '\t' << max_norm_res
+ << std::endl;
}
if (max_norm_res < ns.tolerance) {