Salome HOME
new "medcoupling" python module to gether into a single module all the MEDCoupling...
[tools/medcoupling.git] / src / RENUMBER / RenumberingFactory.cxx
1 // Copyright (C) 2007-2016  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_ALG)
40       {
41         return new METISRenumbering;
42       }
43     else if(s==BOOST_ALG)
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_ALG)
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_ALG)
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
84   std::vector<std::string> AllRenumberMethods()
85   {
86     std::vector<std::string> ret;
87     ret.push_back(std::string(BOOST_ALG));
88     ret.push_back(std::string(METIS_ALG));
89     return ret;
90   }
91   
92   std::vector<std::string> RenumberAvailableMethods()
93   {
94     std::vector<std::string> ret;
95 #ifdef ENABLE_BOOST
96     ret.push_back(std::string(BOOST_ALG));
97 #endif
98 #ifdef MED_ENABLE_METIS
99     ret.push_back(std::string(METIS_ALG));
100 #endif
101     return ret;
102   }
103 }