The Gaudi Framework  master (42b00024)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
precedence::DecisionHubProps Struct Reference

#include </builds/gaudi/Gaudi/GaudiHive/src/PRGraph/PrecedenceRulesGraph.h>

Collaboration diagram for precedence::DecisionHubProps:

Public Member Functions

 DecisionHubProps (const std::string &name, uint nodeIndex, concurrency::Concurrent modeConcurrent, concurrency::PromptDecision modePromptDecision, concurrency::ModeOr modeOR, concurrency::AllPass allPass, concurrency::Inverted isInverted)
 

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_inverted { false }
 Whether the selection result is negated or not. 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 86 of file PrecedenceRulesGraph.h.

Constructor & Destructor Documentation

◆ DecisionHubProps()

precedence::DecisionHubProps::DecisionHubProps ( const std::string &  name,
uint  nodeIndex,
concurrency::Concurrent  modeConcurrent,
concurrency::PromptDecision  modePromptDecision,
concurrency::ModeOr  modeOR,
concurrency::AllPass  allPass,
concurrency::Inverted  isInverted 
)
inline

Definition at line 87 of file PrecedenceRulesGraph.h.

90  : m_name( name )
91  , m_nodeIndex( nodeIndex )
92  , m_modeConcurrent( modeConcurrent )
93  , m_modePromptDecision( modePromptDecision )
94  , m_inverted( isInverted )
95  , m_modeOR( modeOR )
96  , m_allPass( allPass ) {}

Member Data Documentation

◆ m_allPass

bool precedence::DecisionHubProps::m_allPass

Whether always passing regardless of daughter results.

Definition at line 111 of file PrecedenceRulesGraph.h.

◆ m_inverted

bool precedence::DecisionHubProps::m_inverted { false }

Whether the selection result is negated or not.

Definition at line 107 of file PrecedenceRulesGraph.h.

◆ m_modeConcurrent

bool precedence::DecisionHubProps::m_modeConcurrent

Whether all daughters will be evaluated concurrently or sequentially.

Definition at line 102 of file PrecedenceRulesGraph.h.

◆ m_modeOR

bool precedence::DecisionHubProps::m_modeOR

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

Definition at line 109 of file PrecedenceRulesGraph.h.

◆ m_modePromptDecision

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 105 of file PrecedenceRulesGraph.h.

◆ m_name

std::string precedence::DecisionHubProps::m_name

Definition at line 98 of file PrecedenceRulesGraph.h.

◆ m_nodeIndex

uint precedence::DecisionHubProps::m_nodeIndex

Definition at line 99 of file PrecedenceRulesGraph.h.


The documentation for this struct was generated from the following file:
precedence::DecisionHubProps::m_modeConcurrent
bool m_modeConcurrent
Whether all daughters will be evaluated concurrently or sequentially.
Definition: PrecedenceRulesGraph.h:102
precedence::DecisionHubProps::m_name
std::string m_name
Definition: PrecedenceRulesGraph.h:98
precedence::DecisionHubProps::m_nodeIndex
uint m_nodeIndex
Definition: PrecedenceRulesGraph.h:99
precedence::DecisionHubProps::m_modeOR
bool m_modeOR
Whether acting as "and" (false) or "or" node (true)
Definition: PrecedenceRulesGraph.h:109
ConditionsStallTest.name
name
Definition: ConditionsStallTest.py:77
precedence::DecisionHubProps::m_inverted
bool m_inverted
Whether the selection result is negated or not.
Definition: PrecedenceRulesGraph.h:107
precedence::DecisionHubProps::m_allPass
bool m_allPass
Whether always passing regardless of daughter results.
Definition: PrecedenceRulesGraph.h:111
precedence::DecisionHubProps::m_modePromptDecision
bool m_modePromptDecision
Whether to evaluate the hub decision ASA its child decisions allow to do that.
Definition: PrecedenceRulesGraph.h:105