]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorageay <ageay>
Thu, 22 Oct 2009 09:36:00 +0000 (09:36 +0000)
committerageay <ageay>
Thu, 22 Oct 2009 09:36:00 +0000 (09:36 +0000)
src/ParaMEDMEM/DECOptions.hxx
src/ParaMEDMEM/MPIAccess.cxx
src/ParaMEDMEM/MPIProcessorGroup.cxx

index c3eb41e2cea443ab7dd61edd92cac0fbfc0b22c1..5d3448f227c338a5c2daac5fbf7c5c0320d897a5 100644 (file)
@@ -37,10 +37,10 @@ namespace ParaMEDMEM
     bool _forcedRenormalization;
   public:
     DECOptions():_method("P0"),
-                 _timeInterpolationMethod(WithoutTimeInterp),
                  _asynchronous(false),
-                 _forcedRenormalization(false),
-                 _allToAllMethod(Native)
+                 _timeInterpolationMethod(WithoutTimeInterp),
+                 _allToAllMethod(Native),
+                 _forcedRenormalization(false)
     {
     }
     
index 8730045cd23853c9735f114fac05c84ea0196263..70ee6a735f131fe790c9f16bcd317ff376925d3a 100644 (file)
@@ -333,7 +333,7 @@ namespace ParaMEDMEM
   // SendRequestIds to a destination rank
   int MPIAccess::sendRequestIds(int destrank, int size, int *ArrayOfSendRequests)
   {
-    if (size < _send_requests[destrank].size() )
+    if (size < (int)_send_requests[destrank].size() )
       throw INTERP_KERNEL::Exception("wrong call to MPIAccess::SendRequestIds");
     int i = 0 ;
     list< int >::const_iterator iter ;
@@ -346,7 +346,7 @@ namespace ParaMEDMEM
   // RecvRequestIds from a sourcerank
   int MPIAccess::recvRequestIds(int sourcerank, int size, int *ArrayOfRecvRequests)
   {
-    if (size < _recv_requests[sourcerank].size() )
+    if (size < (int)_recv_requests[sourcerank].size() )
       throw INTERP_KERNEL::Exception("wrong call to MPIAccess::RecvRequestIds");
     int i = 0 ;
     list< int >::const_iterator iter ;
index d5b6767813cbf30abe11bcef37df1456ed2403f4..7b16ff8d7a57734cd0d09c733bc523361e441e15 100644 (file)
@@ -101,7 +101,7 @@ namespace ParaMEDMEM
    
     // copying proc_ids in ranks
     copy<set<int>::const_iterator,int*> (proc_ids.begin(), proc_ids.end(), ranks);
-    for (int i=0; i< proc_ids.size();i++)
+    for (int i=0; i< (int)proc_ids.size();i++)
       if (ranks[i]>size_world-1)
         throw INTERP_KERNEL::Exception("invalid rank in set<int> argument of MPIProcessorGroup constructor");