From: Martin Quinson Date: Tue, 6 Feb 2018 09:15:47 +0000 (+0100) Subject: sonar don't like to have commented code, so hide it a bit X-Git-Tag: v3.19~245 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/21ef28ed4570559471a82d7799557741946b0420?ds=sidebyside sonar don't like to have commented code, so hide it a bit --- diff --git a/src/surf/plugins/host_dvfs.cpp b/src/surf/plugins/host_dvfs.cpp index d74cc16caa..2f6a71839d 100644 --- a/src/surf/plugins/host_dvfs.cpp +++ b/src/surf/plugins/host_dvfs.cpp @@ -86,7 +86,7 @@ public: } else { /* The actual implementation uses a formula here: (See Kernel file cpufreq_ondemand.c:158) * - * freq_next = min_f + load * (max_f - min_f) / 100; + * freq_next = min_f + load * (max_f - min_f) / 100 * * So they assume that frequency increases by 100 MHz. We will just use * lowest_pstate - load*pstatesCount();