Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the Storage::read_async and Storage::write_async methods
[simgrid.git] / src / simix / smx_environment.cpp
index 5010842..dde40f2 100644 (file)
@@ -6,6 +6,8 @@
 #include "smx_private.hpp"
 #include "src/include/surf/surf.hpp"
 #include "xbt/xbt_os_time.h"
+
+#include <simgrid/engine.h>
 #include <xbt/ex.hpp>
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to SIMIX (environment)");
@@ -13,18 +15,18 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to S
 /********************************* SIMIX **************************************/
 
 /**
- * \brief A platform constructor.
+ * @brief A platform constructor.
  *
  * Creates a new platform, including hosts, links and the
  * routing_table.
- * \param file a filename of a xml description of a platform. This file
+ * @param file a filename of a xml description of a platform. This file
  * follows this DTD :
  *
- *     \include surfxml.dtd
+ *     @include surfxml.dtd
  *
  * Here is a small example of such a platform
  *
- *     \include small_platform.xml
+ *     @include small_platform.xml
  *
  */
 void SIMIX_create_environment(std::string file)
@@ -44,6 +46,11 @@ void SIMIX_create_environment(std::string file)
   XBT_DEBUG("PARSE TIME: %g", (end - start));
 }
 
+void SIMIX_create_environment(const char* file) // deprecated
+{
+  simgrid_load_platform(file);
+}
+
 void SIMIX_post_create_environment()
 {
   surf_presolve();