From 819dced155686d4d1591774402cee7f7ae8e4279 Mon Sep 17 00:00:00 2001 From: alberich <matthieu.oberon@student-cs.fr> Date: Thu, 25 Mar 2021 17:31:38 +0100 Subject: [PATCH] fix printing issue --- Appli-iso3dfd/ACO.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Appli-iso3dfd/ACO.py b/Appli-iso3dfd/ACO.py index 06440cb..37ea2c7 100644 --- a/Appli-iso3dfd/ACO.py +++ b/Appli-iso3dfd/ACO.py @@ -107,7 +107,7 @@ if __name__ == "__main__": comm = MPI.COMM_WORLD NbP = comm.Get_size() Me = comm.Get_rank() - print(f"Process {Me} launched on node {socket.gethostname()}\n.") + print(f"Process {Me} launched on node {socket.gethostname()}.") # Initialization of hyperparameters alpha = 1 -- GitLab