This commit is contained in:
2026-05-19 11:07:53 +02:00
parent eb52286a7f
commit 7902d61799
5 changed files with 80 additions and 48 deletions
+22 -16
View File
@@ -4,29 +4,35 @@ include_toc: true
# internal-excitation.md
## INTERNAL-EXCITATION: Tuner
## INTERNAL-EXCITATION: Container
**Exhitatory Behavior**:
```Gen
INTERNAL-EXCITATION
type: tuner
tunes:
PRESYNAPSE: out
POSTSYNAPSE: in
SYNAPSE_BOUTON: WINNERTAKEALL.ASTROCYTE.SYNAPSE_BOUTON # questo container conosce il @WTAx, e quindi puo' ricavare l'associazione con @ATROx
tub_local:
??? (fullness: 50x, active: 0x, emptiness: 0x)
type: container
tub_intricated:
PRESYNAPSE: out.{}.{}.PRESYNAPSE
POSTSYNAPSE: in.{}.{}.POSTSYNAPSE
ASTROSYNAPSE: in.{}.{}.ASTROCYTE.ASTROSYNAPSE
```
#### TUN-PRE-POST-ASTRO-SYNAPSE: Tuner
```Gen
TUN-PRE-POST-ASTRO-SYNAPSE
type: tuner
contained_by: INTERNAL-EXCITATION
tunes:
INTERNAL-EXCITATION.PRESYNASPE
INTERNAL-EXCITATION.POSTYNASPE
INTERNAL-EXCITATION.ASTROSYNASPE
tub_local:
tub_intricated:
- GoodTraces ( contained_by: -?? )
- BadTraces ( contained_by: -?? )
context_intricated:
- TunPossible ( contained_by: winnertakeall.md )
```
+5 -4
View File
@@ -1,6 +1,6 @@
# external-in-excitation.md
## EXTERNAL-IN-EXCITATION: Tuner
## EXTERNAL-IN-EXCITATION: Container
**external-in-excitation**:
Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro modulo
@@ -9,8 +9,9 @@ Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro
EXTERNAL-IN-EXCITATION
type: tuner
type: container
tub_tuned:
Post: NEURON/DENDRITIC-BRANCH/expansion/POSTSYNAPSE
tub_intricated:
POSTSYNAPSE: in.{}.{}.POSTSYNAPSE
ASTROSYNAPSE: in.{}.ASTROCYTE.ASTROSYNAPSE
```
+4 -4
View File
@@ -1,6 +1,6 @@
# external-out-excitation.md
## EXTERNAL-OUT-EXCITATION: Tuner
## EXTERNAL-OUT-EXCITATION: Container
**external-out-excitation**:
Qui mettiamo assieme tutte le POSTSYNAPSE di una possibile relazione con un altro modulo
@@ -9,8 +9,8 @@ Qui mettiamo assieme tutte le POSTSYNAPSE di una possibile relazione con un altr
EXTERNAL-OUT-EXCITATION
type: tuner
type: container
tunes:
Post: NEURON/AXON/expansion/POSTSYNAPSE
tub_intricated:
PRESYNAPSE
```
+49 -21
View File
@@ -12,13 +12,30 @@ INTERNAL-EXCITATION
type: container
tunes:
PRESYNAPSE: out
POSTSYNAPSE: in
ASTROSYNAPSE: in.WINNERTAKEALL.ASTROCYTE.ASTROSYNAPSE # Qui specifico che ASTROCYTE e' quello relativo al "in" ovvero postsinaptico, perche' gli ATROCYTE sono interni agli organi, ma eventualmente anche interni ai moduli.
tub_intricated:
PRESYNAPSE: out.{}.{}.PRESYNAPSE
POSTSYNAPSE: in.{}.{}.POSTSYNAPSE
ASTROSYNAPSE: in.{}.ASTROCYTE.ASTROSYNAPSE
```
#### TUN-PRE-POST-ASTRO-SYNAPSE: Tuner
```Gen
TUN-PRE-POST-ASTRO-SYNAPSE
type: tuner
contained_by: INTERNAL-EXCITATION
tunes:
INTERNAL-EXCITATION.PRESYNASPE
INTERNAL-EXCITATION.POSTYNASPE
INTERNAL-EXCITATION.ASTROSYNASPE
tub_local:
tub_intricated:
```
### CheckSynModification: contextor
Qui devo capire queste tracce chi le lascia e se sono esclusive?
@@ -27,30 +44,43 @@ Qui devo capire queste tracce chi le lascia e se sono esclusive?
CheckSynModification: ( active: 60x )
type: contextor
contained_by: INTERNAL-EXCITATION
contained_by: TUN-PRE-POST-ASTRO-SYNAPSE
in_context: Fixed
condition: ( GoodTraces fullness ) AND NOT ( SYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
out_context: ActivateSynPostPre_ctx
condition: ???
out_context: ActivateAstroPostPre_ctx
condition: ( BadTraces fullness )
out_context: DeActivateSynPostPre_ctx
out_context: DeActivateAstroPostPre_ctx
```
### ActivateSynPostPre: accumulator
### ActivateAstronPostPre: binder
Qui attiviamo la Syn collegando Pre e Post. Lo facciamo per tutte le relazioni fino a quando GoodTraces fullness
```Gen
ActivateSynPostPre: ( active: 6x )
ActivateAstroPostPre: ( active: 6x )
type: binder
contained_by: TUN-PRE-POST-ASTRO-SYNAPSE
in_context: ActivateAstroPostPre_ctx
hypothesis: ( GoodTraces fullness ) AND NOT ( ASTROSYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
bind: [PRESYNAPSE, POSTSYNAPSE, ASTROSYNAPSE]
trace: None?
```
### ClearTraces: accumulator
```Gen
ClearTraces: ( active: 6x ) # stesso RF del bind
type: accumulator
contained_by: INTERNAL-EXCITATION
contained_by: TUN-PRE-POST-ASTRO
in_context: ActivateSynPostPre_ctx
hypothesis: ( GoodTraces fullness ) AND NOT ( SYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
bind_intrication: [PRESYNAPSE increase, POSTSYNAPSE increase, ASTROSYNAPSE increase, GoodTraces decrease]
trace: None
in_context: ActivateAstroPostPre_ctx
hypothesis: GoodTraces NOT empty
action: GoodTraces decrease
trace: None?
```
### DeActivateSynPostPre: binder
@@ -61,15 +91,13 @@ Qui deattiviamo la Syn
DeActivateSynPostPre: ( active: 6x )
type: binder
contained_by: INTERNAL-EXCITATION
contained_by: TUN-PRE-POST-ASTRO
# Devo essere sicuro di eliminare i 3 che sono collegati, non a caso.
in_context: DeActivateSynPostPre_ctx
hypothesis: (BadTraces fullness)
bind_intrication: [PRESYNAPSE decrease, POSTSYNAPSE decrease, ASTROSYNAPSE decrease, GoodTraces decrease]
trace: None
unbind: [PRESYNAPSE, POSTSYNAPSE, ASTROSYNAPSE]
trace: None?
```
### ClearTraces: accumulator
deco capire dove eliminare le tracce bad e good.
devo capire dove eliminare le tracce bad e good.
+2 -5
View File
@@ -18,8 +18,8 @@ INTERNAL-EXCITATION
tub_intricated:
# Qui consolido tutti gli "in" e tutti gli "out" che sono stati passati
PRESYNAPSE: out
POSTSYNAPSE: in
PRESYNAPSE: out.{}.{}.PRESYNAPSE
POSTSYNAPSE: in.{}.{}.POSTSYNAPSE
ASTROSYNAPSE: ASTROCYTE.ASTROSYNAPSE # Qui l'unico ASTROCYTE che "conosco" e' quello al quale WINNERTAKELL e' stato binded in TECTUM.
```
@@ -35,9 +35,6 @@ TUN-PRE-POST-ASTRO-SYNAPSE
INTERNAL-EXCITATION.POSTYNASPE
INTERNAL-EXCITATION.ASTROSYNASPE
context_intricated:
- TunPossible ( contained_by: DAY-N )
tub_local:
tub_intricated: