The Gaudi Framework  v29r0 (ff2e7097)
precedence::DecisionHubProps Struct Reference

#include <src/PrecedenceRulesGraph.h>

Collaboration diagram for precedence::DecisionHubProps:

Public Member Functions

 DecisionHubProps (const std::string &name, uint nodeIndex, bool modeConcurrent, bool modePromptDecision, bool modeOR, bool allPass)
 

Public Attributes

std::string m_name
 
uint m_nodeIndex
 
bool m_modeConcurrent
 Whether all daughters will be evaluated concurrently or sequentially. More...
 
bool m_modePromptDecision
 Whether to evaluate the hub decision ASA its child decisions allow to do that. More...
 
bool m_modeOR
 Whether acting as "and" (false) or "or" node (true) More...
 
bool m_allPass
 Whether always passing regardless of daughter results. More...
 

Detailed Description

Definition at line 75 of file PrecedenceRulesGraph.h.

Constructor & Destructor Documentation

precedence::DecisionHubProps::DecisionHubProps ( const std::string name,
uint  nodeIndex,
bool  modeConcurrent,
bool  modePromptDecision,
bool  modeOR,
bool  allPass 
)
inline

Definition at line 76 of file PrecedenceRulesGraph.h.

78  : m_name( name )
79  , m_nodeIndex( nodeIndex )
80  , m_modeConcurrent( modeConcurrent )
81  , m_modePromptDecision( modePromptDecision )
82  , m_modeOR( modeOR )
83  , m_allPass( allPass )
84  {
85  }
bool m_allPass
Whether always passing regardless of daughter results.
bool m_modePromptDecision
Whether to evaluate the hub decision ASA its child decisions allow to do that.
bool m_modeOR
Whether acting as "and" (false) or "or" node (true)
bool m_modeConcurrent
Whether all daughters will be evaluated concurrently or sequentially.

Member Data Documentation

bool precedence::DecisionHubProps::m_allPass

Whether always passing regardless of daughter results.

Definition at line 98 of file PrecedenceRulesGraph.h.

bool precedence::DecisionHubProps::m_modeConcurrent

Whether all daughters will be evaluated concurrently or sequentially.

Definition at line 91 of file PrecedenceRulesGraph.h.

bool precedence::DecisionHubProps::m_modeOR

Whether acting as "and" (false) or "or" node (true)

Definition at line 96 of file PrecedenceRulesGraph.h.

bool precedence::DecisionHubProps::m_modePromptDecision

Whether to evaluate the hub decision ASA its child decisions allow to do that.

Applicable to both concurrent and sequential cases.

Definition at line 94 of file PrecedenceRulesGraph.h.

std::string precedence::DecisionHubProps::m_name

Definition at line 87 of file PrecedenceRulesGraph.h.

uint precedence::DecisionHubProps::m_nodeIndex

Definition at line 88 of file PrecedenceRulesGraph.h.


The documentation for this struct was generated from the following file: