X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/83a986331633ba19391ce14e6605a5b423311ad7..9fd6cbc6c3b06f4b09e3c3339ffb3cc8a68f9bfa:/src/simix/smx_environment.cpp diff --git a/src/simix/smx_environment.cpp b/src/simix/smx_environment.cpp index 3a97ce8a73..dde40f2535 100644 --- a/src/simix/smx_environment.cpp +++ b/src/simix/smx_environment.cpp @@ -1,14 +1,13 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "smx_private.hpp" -#include "xbt/config.hpp" -#include "xbt/log.h" -#include "xbt/sysdep.h" +#include "src/include/surf/surf.hpp" #include "xbt/xbt_os_time.h" + +#include #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to SIMIX (environment)"); @@ -16,21 +15,21 @@ 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(const char *file) +void SIMIX_create_environment(std::string file) { double start = 0; double end = 0; @@ -40,13 +39,18 @@ void SIMIX_create_environment(const char *file) parse_platform_file(file); } catch (xbt_ex& e) { - xbt_die("Error while loading %s: %s", file, e.what()); + xbt_die("Error while loading %s: %s", file.c_str(), e.what()); } if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) end = xbt_os_time(); 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();