X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/417742f1c7f6545db82079acd702fde03547d400..cfc908020fbf63ece22826542148fa0e01fd4195:/examples/simdag/dot/ptg_test.c diff --git a/examples/simdag/dot/ptg_test.c b/examples/simdag/dot/ptg_test.c index aa0c2c4e95..8b30e0c522 100644 --- a/examples/simdag/dot/ptg_test.c +++ b/examples/simdag/dot/ptg_test.c @@ -38,21 +38,13 @@ int main(int argc, char **argv){ SD_task_dump(task); } - FILE *dotout = fopen("dot.dot", "w"); - fprintf(dotout, "digraph A {\n"); - xbt_dynar_foreach(dot, cursor, task) { - SD_task_dotty(task, dotout); - } - fprintf(dotout, "}\n"); - fclose(dotout); - - /* Schedule them all on all the first workstation */ + /* Schedule them all on all the first host*/ XBT_INFO("------------------- Schedule tasks ---------------------------"); - const sg_host_t *ws_list = sg_host_list(); + const sg_host_t *hosts = sg_host_list(); int count = sg_host_count(); xbt_dynar_foreach(dot, cursor, task) { if (SD_task_get_kind(task) == SD_TASK_COMP_PAR_AMDAHL) { - SD_task_schedulev(task, count, ws_list); + SD_task_schedulev(task, count, hosts); } }