Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the class objects and C types for the As -> NetZone transition
[simgrid.git] / src / kernel / routing / FullZone.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 SIMGRID_ROUTING_FULL_HPP_
7 #define SIMGRID_ROUTING_FULL_HPP_
8
9 #include "src/kernel/routing/RoutedZone.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** Full routing: fast, large memory requirements, fully expressive */
16 class XBT_PRIVATE FullZone : public RoutedZone {
17 public:
18   explicit FullZone(NetZone* father, const char* name);
19   void seal() override;
20   ~FullZone() override;
21
22   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
23   void addRoute(sg_platf_route_cbarg_t route) override;
24
25   sg_platf_route_cbarg_t* routingTable_ = nullptr;
26 };
27 }
28 }
29 } // namespaces
30
31 #endif /* SIMGRID_ROUTING_FULL_HPP_ */