Indentation, word wrap

This commit is contained in:
2025-01-04 13:38:08 -04:00
parent 03a6590981
commit 9e5ea0d78c
+13 -10
View File
@@ -51,18 +51,19 @@ public:
};
/**
* Negtrin and Postrin interoceptors are specialized intrinsic interoceptors that, unlike
* neutral interoceptors, have activation thresholds for different response levels
* (indication, alert, and overload). These thresholds allow them to trigger graduated
* responses based on stimulus intensity.
* Negtrin and Postrin interoceptors are specialized intrinsic interoceptors
* that, unlike neutral interoceptors, have activation thresholds for different
* response levels (indication, alert, and overload). These thresholds allow
* them to trigger graduated responses based on stimulus intensity.
*
* While neutral interoceptors simply record a binary state or basic value, Negtrin and Postrin Interoceptors
* can model complex sensory responses with multiple activation levels, similar to biological
* pain/pleasure responses. Each threshold represents a different level of urgency or intensity in the
* While neutral interoceptors simply record a binary state or basic value,
* Negtrin and Postrin Interoceptors can model complex sensory responses with
* multiple activation levels, similar to biological pain/pleasure responses.
* Each threshold represents a different level of urgency or intensity in the
* sensory input.
*
* @see IntrinInteroceptor for the threshold values and implementation details
*****************************************************************************************/
******************************************************************************/
class NegtrinTeroceptor
: public IntrinInteroceptor {
@@ -73,7 +74,8 @@ public:
uint32_t _indicationThreshold = DEFAULT_INDICATION_THRESHOLD,
uint32_t _alertThreshold = DEFAULT_ALERT_THRESHOLD,
uint32_t _overloadThreshold = DEFAULT_OVERLOAD_THRESHOLD)
: IntrinInteroceptor(_id, _value, _indicationThreshold, _alertThreshold, _overloadThreshold)
: IntrinInteroceptor(_id, _value,
_indicationThreshold, _alertThreshold, _overloadThreshold)
{}
};
@@ -86,7 +88,8 @@ public:
uint32_t _indicationThreshold = DEFAULT_INDICATION_THRESHOLD,
uint32_t _alertThreshold = DEFAULT_ALERT_THRESHOLD,
uint32_t _overloadThreshold = DEFAULT_OVERLOAD_THRESHOLD)
: IntrinInteroceptor(_id, _value, _indicationThreshold, _alertThreshold, _overloadThreshold)
: IntrinInteroceptor(_id, _value,
_indicationThreshold, _alertThreshold, _overloadThreshold)
{}
};