Salome HOME
Move medtool folder to MED base repository
[modules/med.git] / medtool / src / RENUMBER / RenumberingFactory.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 #include "RenumberingFactory.hxx"
21 #include "RENUMBER_Renumbering.hxx"
22 #ifdef MED_ENABLE_METIS
23 #include "RENUMBER_METISRenumbering.hxx"
24 #endif
25 #ifdef ENABLE_BOOST
26 #include "RENUMBER_BOOSTRenumbering.hxx"
27 #endif
28
29 #include <iostream>
30
31 using namespace std;
32
33 namespace MED_RENUMBER
34 {
35   Renumbering* RenumberingFactory(const string &s)
36   {
37 #ifdef MED_ENABLE_METIS
38 #ifdef ENABLE_BOOST
39     if (s=="METIS")
40       {
41         return new METISRenumbering;
42       }
43     else if(s=="BOOST")
44       {
45         return new BOOSTRenumbering;
46       }
47     else 
48       {
49         std::cerr << "The method has to be METIS or BOOST" << std::endl;
50         return 0;
51       }
52 #endif
53 #ifndef ENABLE_BOOST
54     if (s=="METIS")
55       {
56         return new METISRenumbering;
57       }
58     else
59       {
60         std::cerr << "The method has to be METIS!" << std::endl;
61         return 0;
62       }
63 #endif
64 #endif
65 #ifndef MED_ENABLE_METIS
66 #ifdef ENABLE_BOOST
67     if (s=="BOOST")
68       {
69         return new BOOSTRenumbering;
70       }
71     else
72       {
73         std::cerr << "The method has to be BOOST!" << std::endl;
74         return 0;
75       }
76 #endif
77 #ifndef ENABLE_BOOST
78     std::cerr << "Error, no method compiled" << std::endl;
79     return 0;
80 #endif
81 #endif
82   }
83 }