Salome HOME
Merge from V6_main 01/04/2013
[modules/med.git] / src / RENUMBER / RENUMBER_METISRenumbering.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifdef MED_ENABLE_PARMETIS
21 // include parmetis.h even if it is not needed here
22 // to avoid inclusion of c++ definitions within extern "C"
23 // from metis.h from parmetis.h from mpi.h(openmpi) from mpicxx.h
24 #include <parmetis.h>
25 #endif
26 extern "C"
27 {
28 #include "metis.h"
29 }
30
31 #include "RENUMBER_METISRenumbering.hxx"
32
33 void METISRenumbering::renumber(const int* graph,const int* index_graph,int nb_cell,std::vector<int>& iperm,std::vector<int>& perm)
34 {
35   iperm.resize(nb_cell,0);
36   perm.resize(nb_cell,0);
37   int num_flag=1;
38   int options=0;
39   METIS_NodeND(&nb_cell,(int*)index_graph,(int*)graph,&num_flag,&options,&iperm[0],&perm[0]);
40 }