]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/PyWrapping/medcoupling.i
Salome HOME
Deal with pipes
[tools/medcoupling.git] / src / PyWrapping / medcoupling.i
index 097cbbfd87c07afd7f9e059eb9ca0d5373289f2f..c97318d5b366b7baf6bdee822caa4aa6a5130304 100644 (file)
 #endif
   }
 
+  bool HasScotchPartitionerAlg()
+  {
+#ifdef WITH_PARTITIONER
+    return MEDPartitioner::HasScotchAlg();
+#else
+    return false;
+#endif    
+  }
+
+  bool HasPTScotchPartitionerAlg()
+  {
+#ifdef WITH_PARTITIONER
+    return MEDPartitioner::HasPTScotchAlg();
+#else
+    return false;
+#endif    
+  }
+
+  bool HasMetisPartitionerAlg()
+  {
+#ifdef WITH_PARTITIONER
+    return MEDPartitioner::HasMetisAlg();
+#else
+    return false;
+#endif    
+  }
+  
   bool HasParallelInterpolatorExt()
   {
 #ifdef WITH_PARALLEL_INTERPOLATOR