Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove redundant blank lines (codefactor).
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 27 May 2020 08:10:46 +0000 (10:10 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 27 May 2020 08:10:46 +0000 (10:10 +0200)
src/surf/network_wifi.cpp
teshsuite/s4u/actor-suspend/actor-suspend.cpp

index 29d1c5f..fb98ffa 100644 (file)
@@ -76,7 +76,6 @@ void NetworkWifiLink::refresh_decay_bandwidths(){
     // Since decay model start at 0 we should use (nSTA-1)
     double new_peak=N0*exp(-lambda*(nSTA-1))+min_bw;
     new_bandwidths.push_back({new_peak, 1.0, nullptr});
-
   }
   decay_bandwidths_=new_bandwidths;
 }
index 7db5045..cab4729 100644 (file)
@@ -17,7 +17,6 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(mwe, "Minimum Working Example");
 simgrid::s4u::ActorPtr receiver;
 
 class Receiver {
-
 public:
   void operator()()
   {
@@ -29,7 +28,6 @@ public:
 };
 
 class Suspender {
-
 public:
   void operator()()
   {
@@ -52,7 +50,6 @@ public:
 
 int main(int argc, char** argv)
 {
-
   simgrid::s4u::Engine* engine = new simgrid::s4u::Engine(&argc, argv);
 
   engine->load_platform(argv[1]);