X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a22eb0ac7d22d5beaa6e33adf8f85c28dac59024..a18117755285a374ec3d5830309c924f2830e3ba:/src/kernel/routing/FloydZone.hpp diff --git a/src/kernel/routing/FloydZone.hpp b/src/kernel/routing/FloydZone.hpp index 1e5a87d48f..c3023b22a2 100644 --- a/src/kernel/routing/FloydZone.hpp +++ b/src/kernel/routing/FloydZone.hpp @@ -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_; + int* predecessorTable_; + double* costTable_; + sg_platf_route_cbarg_t* linkTable_; }; - -}}} // namespaces +} +} +} // namespaces #endif /* SURF_ROUTING_FLOYD_HPP_ */