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
index ce252da..b3e93c6 100644 (file)
@@ -13,18 +13,19 @@ namespace kernel {
 namespace routing {
 
 /** Full routing: fast, large memory requirements, fully expressive */
-class XBT_PRIVATE AsFull: public AsRoutedGraph {
+class XBT_PRIVATE FullZone : public RoutedZone {
 public:
-  explicit AsFull(As* father, const char* name);
+  explicit FullZone(NetZone* father, const char* name);
   void seal() override;
-  ~AsFull() override;
+  ~FullZone() override;
 
   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
   void addRoute(sg_platf_route_cbarg_t route) override;
 
-  sg_platf_route_cbarg_t *routingTable_ = nullptr;
+  sg_platf_route_cbarg_troutingTable_ = nullptr;
 };
-
-}}} // namespaces
+}
+}
+} // namespaces
 
 #endif /* SIMGRID_ROUTING_FULL_HPP_ */