From b65403883b770a7a1f12c773cff048b3e6092bbf Mon Sep 17 00:00:00 2001 From: velho Date: Tue, 25 Nov 2008 16:18:27 +0000 Subject: [PATCH] Increase readability to plot results afterwards. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6100 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/msg/gtnets/gtnets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/msg/gtnets/gtnets.c b/examples/msg/gtnets/gtnets.c index 09d43c3f96..4def160b81 100644 --- a/examples/msg/gtnets/gtnets.c +++ b/examples/msg/gtnets/gtnets.c @@ -115,10 +115,10 @@ int slave(int argc, char *argv[]) for(id=0; id Estimated Bw of FLOW[%d] : %f ; message from %s to %s with remaining : %f", id, gl_data_size[id]/elapsed_time, masternames[id], slavenames[id], 0.0); + INFO5("===> Estimated Bw of FLOW[%d] : %f ; message from %s to %s with remaining : %f", id+1, gl_data_size[id]/elapsed_time, masternames[id], slavenames[id], 0.0); }else{ remaining = MSG_task_get_remaining_communication(gl_task_array[id]); - INFO5("===> Estimated Bw of FLOW[%d] : %f ; message from %s to %s with remaining : %f", id, (gl_data_size[id]-remaining)/elapsed_time, masternames[id], slavenames[id], remaining); + INFO5("===> Estimated Bw of FLOW[%d] : %f ; message from %s to %s with remaining : %f", id+1, (gl_data_size[id]-remaining)/elapsed_time, masternames[id], slavenames[id], remaining); } } exit(0); -- 2.20.1