]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/Loop.cxx
Salome HOME
First implementation of evalyfx.
[modules/yacs.git] / src / engine / Loop.cxx
index ccf1375df46f6f5215df1ca3ecce5181d267a66b..8ce0063e627a2762f2b17a7f6a86db4735fca5c5 100644 (file)
@@ -412,6 +412,13 @@ int Loop::getNumberOfInputPorts() const
   return StaticDefinedComposedNode::getNumberOfInputPorts()+1;
 }
 
+int Loop::getMaxLevelOfParallelism() const
+{
+  if(!_node)
+    return 0;
+  return _node->getMaxLevelOfParallelism();
+}
+
 Node *Loop::getChildByShortName(const std::string& name) const throw(YACS::Exception)
 {
   if (_node)