Skip to content
Snippets Groups Projects

Add selection mechanism in graph

Merged Olivier BICHLER requested to merge select into dev
1 unresolved thread
2 files
+ 11
10
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -135,16 +135,6 @@ public:
*/
void tagConditionalNodes() const;
/**
* @brief Check if the conditional node is required (if one of its conditions
* is true).
*
* @param node Node to check the condition.
* @return true If any node condition is true, meaning it has to be executed.
* @return false If all node conditions are false, meaning it can be skipped.
*/
bool isConditionalNodeRequired(NodePtr node) const;
/**
* @brief Get the static scheduling order of nodes.
* @param step The step of the static schedule to retrieve (default is 0).
@@ -215,6 +205,16 @@ public:
protected:
/**
* @brief Check if the conditional node is required (if one of its conditions
* is true).
*
* @param node Node to check the condition.
* @return true If any node condition is true, meaning it has to be executed.
* @return false If all node conditions are false, meaning it can be skipped.
*/
bool isConditionalNodeRequired(NodePtr node) const;
/**
* @brief Getter for the set of children Nodes of the given input Nodes.
* @param producers Set of Nodes for which we want to obtain the set of children Nodes.
Loading