Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Normalize virtual/override usage
[simgrid.git] / src / surf / AsVivaldi.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_VIVALDI_HPP_
7 #define SURF_ROUTING_VIVALDI_HPP_
8
9 #include "src/surf/AsCluster.hpp"
10
11 namespace simgrid {
12 namespace surf {
13
14 /* This derivates from cluster because each host has a private link */
15 class XBT_PRIVATE AsVivaldi: public AsCluster {
16 public:
17   explicit AsVivaldi(const char *name);
18   ~AsVivaldi() override;
19
20   xbt_dynar_t getOneLinkRoutes() override {return NULL;};
21   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
22 };
23
24 }
25 }
26
27 #endif /* SURF_ROUTING_VIVALDI_HPP_ */