Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update python/clusters-multicpu to the new API.
[simgrid.git] / include / simgrid / kernel / resource / Model.hpp
index c5c09e4050ae2806534ed8716b07c7e55f56b88d..3a5affb668b6b44f97064a18867e66ca3820c43c 100644 (file)
 #include <simgrid/kernel/resource/Action.hpp>
 #include <unordered_map>
 
-namespace simgrid {
-namespace kernel {
-namespace resource {
-
-/** @ingroup SURF_interface
- * @brief SURF model interface class
- * @details A model is an object which handle the interactions between its Resources and its Actions
- */
+namespace simgrid::kernel::resource {
+
 class XBT_PUBLIC Model {
 public:
   /** @brief Possible update mechanisms */
@@ -114,8 +108,6 @@ private:
   ActionHeap action_heap_;
 };
 
-} // namespace resource
-} // namespace kernel
-} // namespace simgrid
+} // namespace simgrid::kernel::resource
 
 #endif