Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
typo
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 13 Apr 2022 14:38:43 +0000 (16:38 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Thu, 14 Apr 2022 08:21:21 +0000 (10:21 +0200)
examples/cpp/dag-scheduling/s4u-dag-scheduling.cpp

index 897ebcc..40a9ad3 100644 (file)
@@ -52,7 +52,7 @@ static std::vector<sg4::Exec*> get_ready_tasks(const std::vector<sg4::ActivityPt
   std::map<sg4::Exec*, unsigned int> candidate_execs;
 
   for (auto& a : dax) {
-    // Only loot at activity that have their dependencies solved but are not assigned
+    // Only look at activity that have their dependencies solved but are not assigned
     if (a->dependencies_solved() && not a->is_assigned()) {
       // if it is an exec, it's ready
       auto* exec = dynamic_cast<sg4::Exec*>(a.get());