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 340d41b..55b6ded 100644 (file)
@@ -1,14 +1,15 @@
+/* Computation tests                                                        */
+
+/* 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
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include <stdio.h>
 #include <stdlib.h>
 
-#include "simdag/simdag.h"
-
-/*
- * SimDag
- * Computation tests
- * Copyright (C) 2007 
- * Sascha Hunold, Frederic Suter
- */
+#include "simgrid/simdag.h"
 
 /*
  * This test checks if the reinitialization of
@@ -27,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;
@@ -67,8 +68,8 @@ 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, comm_cost,
-                   -1.0);
+  SD_task_schedule(root, 2, sg_host_list(), comp_cost,
+                   comm_cost, -1.0);
 
   return root;
 }