Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / src / surf / surf_routing_none.hpp
index c1d45b1..16b97a4 100644 (file)
@@ -18,13 +18,10 @@ namespace surf {
 class XBT_PRIVATE AsNone : public As {
 public:
   AsNone(const char*name);
-  void Seal() override {}; // nothing to do
   ~AsNone();
 
   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
-  xbt_dynar_t getOneLinkRoutes() override;
   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
-  sg_platf_route_cbarg_t getBypassRoute(NetCard *src, NetCard *dst, double *lat) override;
 };
 
 }