Salome HOME
MEDFileFields::LoadSpecificEntities to improve perf when reading lots of TS.
[tools/medcoupling.git] / src / RENUMBER_Swig / MEDRenumberCommon.i
index b099f70b618fb7421056cf1e6caec743520feac5..85f5d7e7c6d4b377eabf343227fe4699251287fa 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2015  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -83,6 +83,21 @@ namespace MED_RENUMBER
   Renumbering *RenumberingFactory(const std::string& s) throw(INTERP_KERNEL::Exception);
 }
 
+%inline
+{
+  std::vector<std::string> RenumberAvailableMethods()throw(INTERP_KERNEL::Exception)
+  {
+    std::vector<std::string> ret;
+#ifdef HAS_BOOST
+    ret.push_back(std::string("BOOST"));
+#endif
+#ifdef HAS_METIS
+    ret.push_back(std::string("METIS"));
+#endif
+    return ret;
+  }
+}
+
 %pythoncode %{
 import os
 __filename=os.environ.get('PYTHONSTARTUP')