Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start renaming AS to NetZone
[simgrid.git] / src / surf / surf_routing.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef NETWORK_ROUTING_HPP_
7 #define NETWORK_ROUTING_HPP_
8
9 #include <xbt/base.h>
10 #include <xbt/signal.hpp>
11
12 #include "surf_interface.hpp"
13 #include "src/kernel/routing/NetZoneImpl.hpp"
14
15 #include <float.h>
16 #include <vector>
17
18 SG_BEGIN_DECL()
19 XBT_PRIVATE xbt_node_t new_xbt_graph_node (xbt_graph_t graph, const char *name, xbt_dict_t nodes);
20 XBT_PRIVATE xbt_edge_t new_xbt_graph_edge (xbt_graph_t graph, xbt_node_t s, xbt_node_t d, xbt_dict_t edges);
21 SG_END_DECL()
22
23 #endif /* NETWORK_ROUTING_HPP_ */