Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
transitions in the same actor are dependent
[simgrid.git] / src / mc / transition / TransitionRandom.hpp
index b62e8c4..ba00821 100644 (file)
@@ -17,7 +17,7 @@ class RandomTransition : public Transition {
 public:
   std::string to_string(bool verbose) const override;
   RandomTransition(aid_t issuer, int times_considered, std::stringstream& stream);
-  bool depends(const Transition* other) const override { return false; } // Independent with any other transition
+  bool depends(const Transition* other) const override { return aid_ == other->aid_; } // Independent with any other transition
 };
 
 } // namespace simgrid::mc