Skip to content
NeuroCognitive Architecture Badge

Inhibition System

This diagram details the inhibition component of the NeuroCognitive Architecture (NCA) cognitive control system.

%%{init: {'theme': 'dark', 'themeVariables': { 'primaryColor': '#242424', 'primaryTextColor': '#fff', 'primaryBorderColor': '#555', 'lineColor': '#f8f8f8', 'secondaryColor': '#2b2b2b', 'tertiaryColor': '#1a1a1a'}}}%%
graph TB
    classDef main fill:#1a1a1a,stroke:#555,color:#fff
    classDef component fill:#242424,stroke:#555,color:#fff
    classDef subcomponent fill:#2b2b2b,stroke:#555,color:#fff
    classDef inhibition fill:#302020,stroke:#555,color:#fff
classDef process fill:#252525,stroke:#555,color:#fff

    subgraph InhibitionSystem["Inhibition System"]
        direction TB
        class InhibitionSystem main

        subgraph ResponseInhibition["Response Inhibition"]
            direction TB
            class ResponseInhibition inhibition
            PrepotentSuppression[Prepotent<br>Suppression] --- ActionCancel[Action<br>Cancellation]
            ResponseDelay[Response<br>Delay] --- ActionSelection[Action<br>Selection<br>Filter]
            class PrepotentSuppression,ActionCancel,ResponseDelay,ActionSelection subcomponent
        end

        subgraph DistractorSuppression["Distractor Suppression"]
            direction TB
            class DistractorSuppression inhibition
            SalienceFiltering[Salience<br>Filtering] --- NoiseReduction[Noise<br>Reduction]
            RelevanceFilter[Relevance<br>Filter] --- FocusProtection[Focus<br>Protection]
            class SalienceFiltering,NoiseReduction,RelevanceFilter,FocusProtection subcomponent
        end

        subgraph InterferenceControl["Interference Control"]
            direction TB
            class InterferenceControl inhibition
            CrossTalkPrevention[Cross-Talk<br>Prevention] --- ContextProtection[Context<br>Protection]
            MemoryInterference[Memory<br>Interference<br>Control] --- ProcessIsolation[Process<br>Isolation]
            class CrossTalkPrevention,ContextProtection,MemoryInterference,ProcessIsolation subcomponent
        end

        subgraph PrepotentInhibition["Prepotent Inhibition"]
            direction TB
            class PrepotentInhibition inhibition
            HabitOverride[Habit<br>Override] --- AutomaticControl[Automatic<br>Response<br>Control]
            DefaultOverride[Default<br>Override] --- PatternInterrupt[Pattern<br>Interrupt]
            class HabitOverride,AutomaticControl,DefaultOverride,PatternInterrupt subcomponent
        end

        subgraph CognitiveSuppression["Cognitive Suppression"]
            direction TB
            class CognitiveSuppression inhibition
            ThoughtSuppression[Thought<br>Suppression] --- MemorySuppression[Memory<br>Suppression]
            ConceptInhibition[Concept<br>Inhibition] --- AssociationBlocking[Association<br>Blocking]
            class ThoughtSuppression,MemorySuppression,ConceptInhibition,AssociationBlocking subcomponent
        end

        subgraph EmotionalRegulation["Emotional Regulation"]
            direction TB
            class EmotionalRegulation inhibition
            EmotionSuppression[Emotion<br>Suppression] --- AffectiveControl[Affective<br>Control]
            EmotionalBias[Emotional<br>Bias<br>Reduction] --- EmotionReappraisal[Emotion<br>Reappraisal]
            class EmotionSuppression,AffectiveControl,EmotionalBias,EmotionReappraisal subcomponent
        end
    end

    %% External connections
    ExecutiveFunction[Executive<br>Function] --> ResponseInhibition
    AttentionSystem[Attention<br>System] --> DistractorSuppression

    %% Internal connections
    ResponseInhibition --> InterferenceControl
    DistractorSuppression --> InterferenceControl
    InterferenceControl --> PrepotentInhibition
    PrepotentInhibition --> CognitiveSuppression
    CognitiveSuppression --> EmotionalRegulation

    %% Cross-connections
    DistractorSuppression --> ResponseInhibition
    EmotionalRegulation --> ResponseInhibition

    class ExecutiveFunction,AttentionSystem subcomponent

Inhibition System Components

The Inhibition System is responsible for suppressing inappropriate responses, filtering distractions, and managing interference in cognitive processes. It includes the following key components:

Response Inhibition

  • Prepotent Suppression: Suppresses dominant or automatic responses
  • Action Cancellation: Stops actions that have been initiated
  • Response Delay: Introduces a delay before responding to allow for evaluation
  • Action Selection Filter: Filters out inappropriate actions from the selection process

Distractor Suppression

  • Salience Filtering: Reduces the impact of salient but irrelevant stimuli
  • Noise Reduction: Filters out background noise in sensory and cognitive processing
  • Relevance Filter: Allows only contextually relevant information to pass through
  • Focus Protection: Maintains attention on the current task by suppressing distractions

Interference Control

  • Cross-Talk Prevention: Prevents interference between concurrent processes
  • Context Protection: Maintains the integrity of contextual information
  • Memory Interference Control: Manages interference between memory items
  • Process Isolation: Ensures isolation between cognitive processes that might interfere

Prepotent Inhibition

  • Habit Override: Overrides habitual responses in favor of goal-directed behavior
  • Automatic Response Control: Regulates automatic responses based on context
  • Default Override: Suppresses default behaviors when they are inappropriate
  • Pattern Interrupt: Breaks established patterns of thinking or behavior

Cognitive Suppression

  • Thought Suppression: Inhibits intrusive or irrelevant thoughts
  • Memory Suppression: Temporarily inhibits memory retrieval when it would interfere
  • Concept Inhibition: Suppresses activation of concepts that are not contextually relevant
  • Association Blocking: Blocks inappropriate associations between concepts

Emotional Regulation

  • Emotion Suppression: Dampens emotional responses when they would interfere with cognition
  • Affective Control: Regulates the influence of affect on cognitive processes
  • Emotional Bias Reduction: Reduces biases introduced by emotional states
  • Emotion Reappraisal: Reframes emotional reactions to change their impact

The Inhibition System is closely linked to the Executive Function system, which directs inhibitory control, and the Attention System, which works in tandem with Distractor Suppression to maintain focus. Inhibition is a critical function in cognitive control, allowing for flexible, goal-directed behavior by suppressing inappropriate responses and irrelevant information.