Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simplify expression.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 2 May 2023 14:14:43 +0000 (16:14 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 2 May 2023 14:39:20 +0000 (16:39 +0200)
src/plugins/operation.cpp

index a250332..f9f8f1c 100644 (file)
@@ -61,10 +61,7 @@ void Operation::remove_predecessor(Operation* predecessor)
  */
 bool Operation::ready_to_run() const
 {
-  if (working_ or queued_execs_ <= 0)
-    return false;
-  else
-    return true;
+  return not working_ && queued_execs_ > 0;
 }
 
 /**