Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I don't see the point of declaring and calling empty functions
[simgrid.git] / src / surf / surf_routing_private.h
index a18de1e..27d5204 100644 (file)
@@ -65,8 +65,6 @@ void generic_src_dst_check(routing_component_t rc, const char *src,
 /* ************************************************************************** */
 /* *************************** FLOYD ROUTING ******************************** */
 routing_component_t model_floyd_create(void);  /* create structures for floyd routing model */
-void model_floyd_load(void);     /* load parse functions for floyd routing model */
-void model_floyd_unload(void);   /* unload parse functions for floyd routing model */
 void model_floyd_end(void);      /* finalize the creation of floyd routing model */
 void model_floyd_set_route(routing_component_t rc, const char *src,
         const char *dst, name_route_extended_t route);
@@ -95,8 +93,6 @@ routing_component_t model_vivaldi_create(void);      /* create structures for vi
 routing_component_t model_dijkstra_both_create(int cached);    /* create by calling dijkstra or dijkstracache */
 routing_component_t model_dijkstra_create(void);       /* create structures for dijkstra routing model */
 routing_component_t model_dijkstracache_create(void);  /* create structures for dijkstracache routing model */
-void model_dijkstra_both_load(void);     /* load parse functions for dijkstra routing model */
-void model_dijkstra_both_unload(void);   /* unload parse functions for dijkstra routing model */
 void model_dijkstra_both_end(void);      /* finalize the creation of dijkstra routing model */
 void model_dijkstra_both_set_route (routing_component_t rc, const char *src,
                      const char *dst, name_route_extended_t route);
@@ -104,8 +100,6 @@ void model_dijkstra_both_set_route (routing_component_t rc, const char *src,
 /* ************************************************************************** */
 /* *************************** FULL ROUTING ********************************* */
 routing_component_t model_full_create(void);   /* create structures for full routing model */
-void model_full_load(void);      /* load parse functions for full routing model */
-void model_full_unload(void);    /* unload parse functions for full routing model */
 void model_full_end(void);       /* finalize the creation of full routing model */
 void model_full_set_route(     /* Set the route and ASroute between src and dst */
                routing_component_t rc, const char *src, const char *dst, name_route_extended_t route);
@@ -113,8 +107,5 @@ void model_full_set_route(  /* Set the route and ASroute between src and dst */
 /* ************************************************************************** */
 /* ******************************* NO ROUTING ******************************* */
 routing_component_t model_none_create(void);           /* none routing model */
-void model_none_load(void);              /* none routing model */
-void model_none_unload(void);            /* none routing model */
-void model_none_end(void);               /* none routing model */
 
 #endif                          /* _SURF_SURF_ROUTING_PRIVATE_H */