Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add event_new to s_type class as a method
[simgrid.git] / src / smpi / colls / alltoallv / alltoallv-ring-mpi-barrier.cpp
index c4d6169..38bf38c 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2014. The SimGrid Team.
+/* Copyright (c) 2013-2017. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -26,6 +26,8 @@
  * Auther: Ahmad Faraj
 
  ****************************************************************************/
+namespace simgrid{
+namespace smpi{
 int
 Coll_alltoallv_ring_mpi_barrier::alltoallv(void *send_buff, int *send_counts, int *send_disps,
                                           MPI_Datatype send_type,
@@ -57,3 +59,5 @@ Coll_alltoallv_ring_mpi_barrier::alltoallv(void *send_buff, int *send_counts, in
 
   return MPI_SUCCESS;
 }
+}
+}