From: Martin Quinson Date: Mon, 21 Oct 2019 12:13:12 +0000 (+0200) Subject: default value for latency should be 0 X-Git-Tag: v3.25~501 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e1c4dcf63a54d957507006ee3edbfbb6368a27df default value for latency should be 0 --- diff --git a/src/surf/network_interface.hpp b/src/surf/network_interface.hpp index 8d38ef6c6e..ea9039e66d 100644 --- a/src/surf/network_interface.hpp +++ b/src/surf/network_interface.hpp @@ -154,7 +154,7 @@ public: latency changes due to external load). Trace must contain absolute values */ - Metric latency_ = {1.0, 0, nullptr}; + Metric latency_ = {0.0, 0, nullptr}; Metric bandwidth_ = {1.0, 0, nullptr}; };