Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add missing include
authorSUTER Frederic <frederic.suter@cc.in2p3.fr>
Sun, 2 Jan 2022 13:44:24 +0000 (14:44 +0100)
committerSUTER Frederic <frederic.suter@cc.in2p3.fr>
Sun, 2 Jan 2022 13:44:24 +0000 (14:44 +0100)
examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp

index a3cca25..bca5a43 100644 (file)
@@ -5,8 +5,9 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 /* simple test to schedule a DAX file with the Min-Min algorithm.           */
-#include "simgrid/s4u.hpp"
 #include <math.h>
+#include <simgrid/host.h>
+#include <simgrid/s4u.hpp>
 #include <string.h>
 
 #if SIMGRID_HAVE_JEDULE