Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further cleanups in routing: check if route already exists uniformly
[simgrid.git] / src / surf / surf_routing_floyd.hpp
index 90016cb..9e3d722 100644 (file)
@@ -33,9 +33,9 @@ public:
 
 private:
   /* vars to compute the Floyd algorithm. */
-  int *p_predecessorTable;
-  double *p_costTable;
-  sg_platf_route_cbarg_t *p_linkTable;
+  int *predecessorTable_;
+  double *costTable_;
+  sg_platf_route_cbarg_t *linkTable_;
 };
 
 }