Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove an obsolete example
[simgrid.git] / teshsuite / simdag / availability / availability.c
diff --git a/teshsuite/simdag/availability/availability.c b/teshsuite/simdag/availability/availability.c
deleted file mode 100644 (file)
index 443a4f1..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/* Copyright (c) 2013-2019. 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 <string.h>
-#include <simgrid/simdag.h>
-#include <xbt/log.h>
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(test,"Logging for the current example");
-
-static int name_compare_hosts(const void *n1, const void *n2)
-{
-  return strcmp(sg_host_get_name(*(sg_host_t *) n1), sg_host_get_name(*(sg_host_t *) n2));
-}
-
-static void scheduleDAX(xbt_dynar_t dax)
-{
-  unsigned int cursor;
-  SD_task_t task;
-
-  sg_host_t *hosts = sg_host_list();
-  int totalHosts = sg_host_count();
-  qsort((void *) hosts, totalHosts, sizeof(sg_host_t), name_compare_hosts);
-
-  xbt_dynar_foreach(dax, cursor, task) {
-    if (SD_task_get_kind(task) == SD_TASK_COMP_SEQ) {
-      if (!strcmp(SD_task_get_name(task), "end") || !strcmp(SD_task_get_name(task), "root")) {
-        XBT_INFO("Scheduling %s to node: %s", SD_task_get_name(task), sg_host_get_name(hosts[0]));
-        SD_task_schedulel(task, 1, hosts[0]);
-      } else {
-        XBT_INFO("Scheduling %s to node: %s", SD_task_get_name(task), sg_host_get_name(hosts[(cursor) % totalHosts]));
-        SD_task_schedulel(task, 1, hosts[(cursor) % totalHosts]);
-      }
-    }
-  }
-  xbt_free(hosts);
-}
-
-int main(int argc, char *argv[])
-{
-  SD_init(&argc, argv);
-  xbt_assert(argc > 2, "Usage: %s platform_file dax_file\n"
-             "\tExample: %s simulacrum_7_hosts.xml Montage_25.xml", argv[0], argv[0]);
-
-  SD_create_environment(argv[1]);
-  xbt_dynar_t dax = SD_daxload(argv[2]);
-
-  XBT_INFO("Scheduling DAX...");
-  scheduleDAX(dax);
-  XBT_INFO("DAX scheduled");
-  SD_simulate(-1);
-
-  XBT_INFO("Simulation done.");
-
-  // Free memory
-  while (!xbt_dynar_is_empty(dax)) {
-    SD_task_t task = xbt_dynar_pop_as(dax, SD_task_t);
-    SD_task_destroy(task);
-  }
-  xbt_dynar_free(&dax);
-  return 0;
-}