This commit is contained in:
2026-06-25 11:30:04 +02:00
parent 605ecb83a2
commit 95b1d9bab0
3 changed files with 39 additions and 22 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ NEURON
_SpikeTrainTraces: INSTANTIATE [ tub: local, full: 60x, active: 30x, empty: 0x ]
# Container
$: INSTANTIATE [ container: MAIN_NEURON ]
void: INSTANTIATE [ container: MAIN_NEURON ]
```
### MAIN_NEURON
@@ -64,7 +64,7 @@ MAIN_NEURON
within_scope: !DAY
snippet:
£: ACCUMULATOR [ snippet: TunPossibility, rf: active 12x ]
void: ACCUMULATOR [ snippet: TunPossibility, rf: active 12x ]
```
#### TunPossibility
+32 -15
View File
@@ -21,6 +21,23 @@ PRESYNAPSE
type: comprehension
_pre_fast_trace
_pre_possible_tag _pre_possible_intensity_tag
_pre_tag _pre_intensity_tag
_pre_dopamine
_eCB
_NO
_RRP
_NT
_pre_budget
_pre_astro_budget
_pre_axon_budget
_pre_endurance_need _pre_endurance_tag
// Intrication
// Scope
@@ -58,12 +75,12 @@ PRESYNAPSE
_RrpFullDev: INSTANTIATE [ tub: local, full: 60x, act: 30x, empty: 0x ] // serve al DEV
// Container
$: INSTANTIATE [ container: MAIN ] // !DAY
$: INSTANTIATE [ container: TRACE ] // !DAY
$: INSTANTIATE [ container: DECAY ] // !DAY
$: INSTANTIATE [ container: RECOVER ] // !DAY
$: INSTANTIATE [ container: ADJUST ] // !DAY Tuning
$: INSTANTIATE [ container: DEVELOP ] // !NIGHT
void: INSTANTIATE [ container: MAIN ] // !DAY
void: INSTANTIATE [ container: TRACE ] // !DAY
void: INSTANTIATE [ container: DECAY ] // !DAY
void: INSTANTIATE [ container: RECOVER ] // !DAY
void: INSTANTIATE [ container: ADJUST ] // !DAY Tuning
void: INSTANTIATE [ container: DEVELOP ] // !NIGHT
// Expansion
@@ -81,9 +98,9 @@ MAIN
within_scope: !DAY
// snippet: *AP
£: INCLUDE [ accumulator: NTreleaseLow, event: act 12x, cost: act 3x ]
£: INCLUDE [ accumulator: NTreleaseMedium, event: act 9x, cost: act 3x ]
£: INCLUDE [ accumulator: NTreleaseHigh, event: act 6x, cost: act 3x ]
void: INCLUDE [ accumulator: NTreleaseLow, event: act 12x, cost: act 3x ]
void: INCLUDE [ accumulator: NTreleaseMedium, event: act 9x, cost: act 3x ]
void: INCLUDE [ accumulator: NTreleaseHigh, event: act 6x, cost: act 3x ]
```
@@ -143,9 +160,9 @@ TRACE
// snippet: *AP
£: INCLUDE [ accumulator: TracesAccLow, event: act 3x, cost: act 3x ]
£: INCLUDE [ accumulator: TracesAccMedium, event: act 6x, cost: act 3x ]
£: INCLUDE [ accumulator: TracesAccHigh, event: act 10x, cost: act 3x ]
void: INCLUDE [ accumulator: TracesAccLow, event: act 3x, cost: act 3x ]
void: INCLUDE [ accumulator: TracesAccMedium, event: act 6x, cost: act 3x ]
void: INCLUDE [ accumulator: TracesAccHigh, event: act 10x, cost: act 3x ]
```
@@ -198,10 +215,10 @@ MAIN
within_scope: !DAY
// snippet: NOT *AP
£: INCLUDE [ accumulator: eCBClearenceMedium, event: act 24x, cost: act 3x ]
£: INCLUDE [ accumulator: eCBClearenceLow, event: act 48x, cost: act 3x ]
void: INCLUDE [ accumulator: eCBClearenceMedium, event: act 24x, cost: act 3x ]
void: INCLUDE [ accumulator: eCBClearenceLow, event: act 48x, cost: act 3x ]
£: INCLUDE [ accumulator: TracesClearance, event: act 30x, cost: act 3x ]
void: INCLUDE [ accumulator: TracesClearance, event: act 30x, cost: act 3x ]
```
#### NOT *AP
+5 -5
View File
@@ -48,7 +48,7 @@ include:
// internal Area xxx
$: INSTANTIATE [ container: EXCITATION, argument: COLLECTION [
void: INSTANTIATE [ container: EXCITATION, argument: COLLECTION [
pre: @NEU_001.@AXON-001._presynapse,
post: @NEU_001.@D_BRANCH_001._postsynapse,
astro: &ASTROCYTE._astrosynapse ] ]
@@ -64,14 +64,14 @@ EXCITATION
activity_scope: !NIGHT
// snippet: *Fixed
@: INCLUDE [ contextor: ExcitationPossible, event: act 12x ]
void: INCLUDE [ contextor: ExcitationPossible, event: act 12x ]
// snippet: *ActivateAstroPostPre
@: INCLUDE [ binder: ExcitationBind, event: act 12x, cost: act 3x ]
@: INCLUDE [ accumulator: ClearTraces, event: act 12x, cost: act 3x ]
void: INCLUDE [ binder: ExcitationBind, event: act 12x, cost: act 3x ]
void: INCLUDE [ accumulator: ClearTraces, event: act 12x, cost: act 3x ]
// snippet: *DeActivateAstroPost
@: INCLUDE [ binder: ExcitationUnbind, event: act 12x, cost: act 3x ]
void: INCLUDE [ binder: ExcitationUnbind, event: act 12x, cost: act 3x ]
```
#### *Fixed