| tminor column width fix - sphere - GPU-based 3D discrete element method algorit… | |
| git clone git://src.adamsgaard.dk/sphere | |
| Log | |
| Files | |
| Refs | |
| LICENSE | |
| --- | |
| commit 22dd69e51e11b55aebc4cb0284a65a71170b774d | |
| parent ce8f578633d5459e3b194d1b151b7331a0c9da7d | |
| Author: Anders Damsgaard <[email protected]> | |
| 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(-) | |
| --- | |
| 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::en… | |
| + reslog << nijac << '\t' << max_norm_res | |
| + << std::endl; | |
| } | |
| if (max_norm_res < ns.tolerance) { |