X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1555ef43eee251e5892a2f7fd49bc96e99d68fef..83a986331633ba19391ce14e6605a5b423311ad7:/src/simix/smx_environment.cpp diff --git a/src/simix/smx_environment.cpp b/src/simix/smx_environment.cpp index eb362756b0..3a97ce8a73 100644 --- a/src/simix/smx_environment.cpp +++ b/src/simix/smx_environment.cpp @@ -1,18 +1,17 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. +/* 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.h" -#include -#include "xbt/sysdep.h" +#include "smx_private.hpp" +#include "xbt/config.hpp" #include "xbt/log.h" +#include "xbt/sysdep.h" #include "xbt/xbt_os_time.h" -#include "xbt/config.h" +#include -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, - "Logging specific to SIMIX (environment)"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to SIMIX (environment)"); /********************************* SIMIX **************************************/ @@ -33,7 +32,8 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, */ void SIMIX_create_environment(const char *file) { - double start = 0, end = 0; + double start = 0; + double end = 0; if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug)) start = xbt_os_time(); try { @@ -47,7 +47,7 @@ void SIMIX_create_environment(const char *file) XBT_DEBUG("PARSE TIME: %g", (end - start)); } -void SIMIX_post_create_environment(void) +void SIMIX_post_create_environment() { surf_presolve(); }