X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce6c6e673d5d233ea614018e5ca97e9ef5b63fa4..9cbdbf1d739774e5c49488d42a2b5d535c7a8465:/src/surf/surf_routing_floyd.hpp diff --git a/src/surf/surf_routing_floyd.hpp b/src/surf/surf_routing_floyd.hpp index 90016cba48..9e3d722353 100644 --- a/src/surf/surf_routing_floyd.hpp +++ b/src/surf/surf_routing_floyd.hpp @@ -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_; }; }