Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unnecessry files
[simgrid.git] / src / surf / surf_model.c
diff --git a/src/surf/surf_model.c b/src/surf/surf_model.c
deleted file mode 100644 (file)
index 3cb98f1..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-
-/* Copyright (c) 2009-2012. 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 "surf_private.h"
-#include "xbt/dict.h"
-
-static void void_die_impossible_paction(surf_action_t action)
-{
-  DIE_IMPOSSIBLE;
-}
-
-static int int_die_impossible_paction(surf_action_t action)
-{
-  DIE_IMPOSSIBLE;
-  return -1;
-}
-
-/** @brief initialize common datastructures to all models */
-surf_model_t surf_model_init(void)
-{
-  s_surf_action_t action;
-  surf_model_t model = xbt_new0(s_surf_model_t, 1);
-
-  model->model_private = xbt_new0(s_surf_model_private_t, 1);
-
-  model->states.ready_action_set =
-      xbt_swag_new(xbt_swag_offset(action, state_hookup));
-  model->states.running_action_set =
-      xbt_swag_new(xbt_swag_offset(action, state_hookup));
-  model->states.failed_action_set =
-      xbt_swag_new(xbt_swag_offset(action, state_hookup));
-  model->states.done_action_set =
-      xbt_swag_new(xbt_swag_offset(action, state_hookup));
-
-  model->action_unref = int_die_impossible_paction;
-  model->action_cancel = void_die_impossible_paction;
-  model->action_recycle = void_die_impossible_paction;
-
-  model->action_state_get = surf_action_state_get;
-  model->action_state_set = surf_action_state_set;
-  model->action_get_start_time = surf_action_get_start_time;
-  model->action_get_finish_time = surf_action_get_finish_time;
-  model->action_data_set = surf_action_data_set;
-
-  model->model_private->modified_set = NULL;
-  model->model_private->action_heap = NULL;
-  model->model_private->update_mechanism = UM_UNDEFINED;
-  model->model_private->selective_update = 0;
-
-  return model;
-}
-
-/** @brief finalize common datastructures to all models */
-void surf_model_exit(surf_model_t model)
-{
-  xbt_swag_free(model->states.ready_action_set);
-  xbt_swag_free(model->states.running_action_set);
-  xbt_swag_free(model->states.failed_action_set);
-  xbt_swag_free(model->states.done_action_set);
-  free(model->model_private);
-  free(model);
-}