Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format changes related to the previous commit
[simgrid.git] / src / kernel / routing / FloydZone.hpp
index 1e5a87d..c3023b2 100644 (file)
@@ -13,7 +13,7 @@ namespace kernel {
 namespace routing {
 
 /** Floyd routing data: slow initialization, fast lookup, lesser memory requirements, shortest path routing only */
-class XBT_PRIVATE AsFloyd: public AsRoutedGraph {
+class XBT_PRIVATE AsFloyd : public AsRoutedGraph {
 public:
   explicit AsFloyd(As* father, const char* name);
   ~AsFloyd() override;
@@ -24,11 +24,12 @@ public:
 
 private:
   /* vars to compute the Floyd algorithm. */
-  int *predecessorTable_;
-  double *costTable_;
-  sg_platf_route_cbarg_t *linkTable_;
+  intpredecessorTable_;
+  doublecostTable_;
+  sg_platf_route_cbarg_tlinkTable_;
 };
-
-}}} // namespaces
+}
+}
+} // namespaces
 
 #endif /* SURF_ROUTING_FLOYD_HPP_ */