Files
organism/modules/winnertakeall/winnertakeall-beh.md
T

166 lines
3.7 KiB
Markdown
Raw Normal View History

2026-05-06 11:32:05 +02:00
# winnertakeall-beh.md
2026-05-22 11:00:22 +02:00
## EXCITATION: container
2026-05-06 11:32:05 +02:00
2026-05-22 11:00:22 +02:00
```Gen
EXCITATION
type: container
activity_scope: !NIGHT
tub_intricated:
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, ovvero nell'organo che ha espansi il modulo.
```
### Excitation-possible: contextor
Qui devo capire queste tracce chi le lascia e se sono esclusive?
```Gen
CheckSynModification: ( active: 60x )
type: contextor
contained_by: EXCITATION
in_context: Fixed
condition: ???
out_context: ActivateAstroPostPre_ctx
condition: ( BadTraces fullness )
out_context: DeActivateAstroPostPre_ctx
```
### Excitation-bind: binder
Qui attiviamo la Syn collegando Pre e Post. Lo facciamo per tutte le relazioni fino a quando GoodTraces fullness
```Gen
ActivateAstroPostPre: ( active: 6x )
type: binder
contained_by: EXCITATION
in_context: ActivateAstroPostPre_ctx
hypothesis: ( GoodTraces fullness ) AND NOT ( ASTROSYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
bind: [PRESYNAPSE increase, POSTSYNAPSE increase, ASTROSYNAPSE increase]
trace: None?
```
### ClearTraces: accumulator
```Gen
ClearTraces: ( active: 6x ) # stesso RF del bind
type: accumulator
contained_by: EXCITATION
in_context: ActivateAstroPostPre_ctx
hypothesis: GoodTraces NOT empty
action: GoodTraces decrease
trace: None?
```
### Excitation-unbind: binder
Qui deattiviamo la Syn
```Gen
DeActivateSynPostPre: ( active: 6x )
type: binder
contained_by: EXCITATION
# Devo essere sicuro di eliminare i 3 che sono collegati, non a caso.
in_context: DeActivateSynPostPre_ctx
hypothesis: (BadTraces fullness)
unbind: [PRESYNAPSE decrease, POSTSYNAPSE decrease, ASTROSYNAPSE decrease]
trace: None?
```
## INHIBITION: container
2026-05-06 11:32:05 +02:00
```Gen
2026-05-22 11:00:22 +02:00
INHIBITION
2026-05-06 11:32:05 +02:00
type: container
2026-05-22 11:00:22 +02:00
activity_scope: !NIGHT
2026-05-06 11:32:05 +02:00
2026-05-22 11:00:22 +02:00
tub_intricated:
PRESYNAPSE: out.{}.{}.PRESYNAPSE
SOMASYNAPSE: in.{}.{}.SOMASYNAPSE
ASTROSYNAPSE: ASTROCYTE.ASTROSYNAPSE # Qui l'unico ASTROCYTE che "conosco" e' quello al quale WINNERTAKELL e' stato binded in TECTUM, ovvero nell'organo che ha espansi il modulo.
```
## IN-EXCITATION: Container
**in-excitation**:
Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro modulo
```Gen
IN-EXCITATION
type: container
activity_scope: !NIGHT
tub_intricated:
POSTSYNAPSE: in.{}.{}.POSTSYNAPSE-BHE
ASTROSYNAPSE: ASTROCYTE.ASTROSYNAPSE-BEH # Qui l'unico ASTROCYTE che "conosco" e' quello al quale WINNERTAKELL e' stato binded in TECTUM, ovvero nell'organo che ha espansi il modulo.
```
## OUT-EXCITATION: Container
**out-excitation**:
Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro modulo
```Gen
OUT-EXCITATION
type: container
activity_scope: !NIGHT
2026-05-07 09:50:34 +02:00
2026-05-22 11:00:22 +02:00
tub_intricated:
PRESYNASPE: out.{}.{}.PRESYNAPSE
```
2026-05-11 17:07:17 +02:00
2026-05-22 11:00:22 +02:00
## IN-INHIBITION: Container
2026-05-21 09:36:56 +02:00
2026-05-22 11:00:22 +02:00
**in-inhibition**:
Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro modulo
```Gen
2026-05-07 11:07:06 +02:00
2026-05-22 11:00:22 +02:00
IN-EXCITATION
2026-05-07 11:07:06 +02:00
2026-05-22 11:00:22 +02:00
type: container
activity_scope: !NIGHT
tub_intricated:
SOMASYNAPSE: in.{}.{}.SOMASYNAPSE-BHE
ASTROSYNAPSE: ASTROCYTE.ASTROSYNAPSE-BEH # Qui l'unico ASTROCYTE che "conosco" e' quello al quale WINNERTAKELL e' stato binded in TECTUM, ovvero nell'organo che ha espansi il modulo.
2026-05-18 19:41:20 +02:00
```
2026-05-22 11:00:22 +02:00
## OUT-INHIBITION: Container
**out-inhibition**:
Qui mettiamo assieme tutte le PRESYNAPSE di una possibile relazione con un altro modulo
```Gen
OUT-INHIBITION
type: container
activity_scope: !NIGHT
tub_intricated:
PRESYNASPE: out.{}.{}.PRESYNAPSE
```