]> 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 e95cb251037439b29b4047daa242d019b5ae9047..c97318d5b366b7baf6bdee822caa4aa6a5130304 100644 (file)
 #endif
   }
 
-  bool HasParallelInterpolator()
+  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
     return true;