Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move code in simgrid::mc
[simgrid.git] / src / surf / AsFull.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 SURF_ROUTING_FULL_HPP_
7 #define SURF_ROUTING_FULL_HPP_
8
9 #include "src/surf/AsRoutedGraph.hpp"
10
11 namespace simgrid {
12 namespace surf {
13
14 /** Full routing: fast, large memory requirements, fully expressive */
15 class XBT_PRIVATE AsFull: public AsRoutedGraph {
16 public:
17
18   AsFull(const char*name);
19   void Seal() override;
20   ~AsFull();
21
22   void getRouteAndLatency(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 }
30
31 #endif /* SURF_ROUTING_FULL_HPP_ */