Salome HOME
0de52dc0482c4ba49a80d71fc88729cf2a05d4a5
[tools/medcoupling.git] / src / RENUMBER / RENUMBER_METISRenumbering.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 "MEDCouplingMemArray.hxx"
32 #include "MCAuto.hxx"
33
34 #include "RENUMBER_METISRenumbering.hxx"
35
36 void METISRenumbering::renumber(const int *graph, const int *index_graph, int nbCell, MEDCoupling::DataArrayInt *&iperm, MEDCoupling::DataArrayInt *&perm)
37 {
38   MEDCoupling::MCAuto<MEDCoupling::DataArrayInt> out0(MEDCoupling::DataArrayInt::New()),out1(MEDCoupling::DataArrayInt::New());
39   out0->alloc(nbCell,1); out1->alloc(nbCell,1);
40   out0->fillWithZero(); out1->fillWithZero();
41   int num_flag=1;
42   int options=0;
43   METIS_NodeND(&nbCell,(int*)index_graph,(int*)graph,&num_flag,&options,out0->getPointer(),out1->getPointer());
44   iperm=out0.retn(); perm=out1.retn();
45 }