Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use brand new attibute: symmetrical="YES"
[simgrid.git] / teshsuite / simdag / network / test_reinit_costs.c
index c269ba7..55b6ded 100644 (file)
@@ -1,6 +1,6 @@
 /* Computation tests                                                        */
 
-/* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -9,7 +9,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#include "simdag/simdag.h"
+#include "simgrid/simdag.h"
 
 /*
  * This test checks if the reinitialization of
@@ -28,7 +28,7 @@ static SD_task_t create_empty_cost_root()
   SD_task_t root;
 
   root = SD_task_create("Root", NULL, 1.0);
-  SD_task_schedule(root, 1, SD_workstation_get_list(), no_cost, no_cost,
+  SD_task_schedule(root, 1, sg_host_list(), no_cost, no_cost,
                    -1.0);
 
   return root;
@@ -68,7 +68,7 @@ static SD_task_t create_root_with_costs()
   SD_task_t root;
 
   root = SD_task_create("Root", NULL, 1.0);
-  SD_task_schedule(root, 2, SD_workstation_get_list(), comp_cost,
+  SD_task_schedule(root, 2, sg_host_list(), comp_cost,
                    comm_cost, -1.0);
 
   return root;