tImprove console output during irregular packing - Granular.jl - Julia package for granular dynamics simulation
HTML git clone git://src.adamsgaard.dk/Granular.jl
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit ec1a83697c6c1cd34d6e5f580eaca2b4ad815008
DIR parent 73163a169378401d89a8448e07ff893b2dbefc18
HTML Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Mon, 7 May 2018 13:29:06 -0400
Improve console output during irregular packing
Diffstat:
M src/packing.jl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
DIR diff --git a/src/packing.jl b/src/packing.jl
t@@ -353,7 +353,8 @@ function irregularPacking!(simulation::Simulation;
end # end while !isempty(active_list)
if verbose
- Compat.@info "\nGenerated $(length(simulation.grains) - np_init) points"
+ println("")
+ Compat.@info "Generated $(length(simulation.grains) - np_init) points"
end
end