X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..35557e5fd3d3b22e082d016a710532683e70baf1:/examples/simdag/sd_test2.c diff --git a/examples/simdag/sd_test2.c b/examples/simdag/sd_test2.c index 781a7d4ef7..aaa60fdfa1 100644 --- a/examples/simdag/sd_test2.c +++ b/examples/simdag/sd_test2.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. +/* Copyright (c) 2007-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -8,7 +8,7 @@ #include #include -#include "simdag/simdag.h" +#include "simgrid/simdag.h" #include "xbt/log.h" #include "xbt/sysdep.h" /* calloc, printf */ @@ -25,7 +25,6 @@ static int nameCompareHosts(const void *n1, const void *n2) int main(int argc, char **argv) { int i, j; - xbt_dynar_t changed_tasks; int n_hosts; const SD_workstation_t *hosts; SD_task_t taskInit; @@ -57,7 +56,7 @@ int main(int argc, char **argv) double final_cost = 5e+9; double *ParComp_wcomm2_table; - /* initialisation of SD */ + /* SD initialization */ SD_init(&argc, argv); /* creation of the environment */ @@ -201,11 +200,10 @@ int main(int argc, char **argv) SD_SCHED_NO_COST, -1.0); /* let's launch the simulation! */ - changed_tasks = SD_simulate(-1.0); + SD_simulate(-1.0); XBT_INFO("Simulation time: %f", SD_get_clock()); - xbt_dynar_free_container(&changed_tasks); free(ParComp_wocomm_table); free(IntraRedist_cost);