Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename NetCards to NetPoints
[simgrid.git] / src / kernel / routing / FullZone.hpp
index ce252da..f13764f 100644 (file)
@@ -12,19 +12,26 @@ namespace simgrid {
 namespace kernel {
 namespace routing {
 
-/** Full routing: fast, large memory requirements, fully expressive */
-class XBT_PRIVATE AsFull: public AsRoutedGraph {
+/** @ingroup ROUTING_API
+ *  @brief NetZone with an explicit routing provided by the user
+ *
+ *  The full communication matrix is provided at creation, so this model
+ *  has the highest expressive power and the lowest computational requirements,
+ *  but also the highest memory requirements (both in platform file and in memory).
+ */
+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 getLocalRoute(NetPoint* src, NetPoint* 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_ */