Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename `EventSet::is_maximal_event_set()`
[simgrid.git] / src / mc / explo / udpor / EventSet.hpp
index 85780ac..f682224 100644 (file)
@@ -68,8 +68,14 @@ public:
    * @brief Whether or not this set of events is
    * a *maximal event set*, i.e. whether each element
    * of the set causes none of the others
+   *
+   * A set of events `E` is said to be _maximal_ if
+   * it is causally-free. Formally,
+   *
+   * 1. For each event `e` in `E`, there is no event
+   * `e'` in `E` such that `e < e'`
    */
-  bool is_maximal_event_set() const;
+  bool is_maximal() const;
 };
 
 } // namespace simgrid::mc::udpor