Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Prefer xbt_assert here.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 10 Mar 2021 09:08:37 +0000 (10:08 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 10 Mar 2021 09:08:37 +0000 (10:08 +0100)
src/mc/mc_global.cpp
src/surf/cpu_ti.cpp

index 1549e4e..7906df2 100644 (file)
@@ -20,6 +20,8 @@
 
 #include <array>
 #include <boost/core/demangle.hpp>
+#include <cerrno>
+#include <cstring>
 #include <libunwind.h>
 #endif
 
@@ -61,11 +63,7 @@ FILE *dot_output = nullptr;
 void MC_init_dot_output()
 {
   dot_output = fopen(_sg_mc_dot_output_file.get().c_str(), "w");
-
-  if (dot_output == nullptr) {
-    perror("Error open dot output file");
-    xbt_abort();
-  }
+  xbt_assert(dot_output != nullptr, "Error open dot output file: %s", strerror(errno));
 
   fprintf(dot_output,
           "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n");
index 1316a0f..5475676 100644 (file)
@@ -139,12 +139,10 @@ double CpuTiTmgr::solve(double a, double amount) const
   }
 
   /* Sanity checks */
-  if ((a < 0.0) || (amount < 0.0)) {
-    XBT_CRITICAL("Error, invalid parameters [a = %.2f, amount = %.2f]. "
-                 "You probably have a task executing with negative computation amount. Check your code.",
-                 a, amount);
-    xbt_abort();
-  }
+  xbt_assert(a >= 0.0 && amount >= 0.0,
+             "Error, invalid parameters [a = %.2f, amount = %.2f]. "
+             "You probably have a task executing with negative computation amount. Check your code.",
+             a, amount);
 
   /* At this point, a and amount are positive */
   if (amount < EPSILON)