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

91 lines
1.9 KiB
Markdown
Raw Normal View History

2026-05-25 17:05:06 +02:00
---
include_toc: true
---
2026-05-06 11:32:05 +02:00
# winnertakeall-beh.md
2026-05-25 17:05:06 +02:00
## EXCITATION
2026-05-06 11:32:05 +02:00
2026-05-22 11:00:22 +02:00
```Gen
EXCITATION
type: container
activity_scope: !NIGHT
2026-05-24 09:15:54 +02:00
tub_passed:
2026-05-25 17:05:06 +02:00
_Presynapse: TUB [out.{}.{}.PRESYNAPSE]
_Postsynapse: TUB [in.{}.{}.POSTSYNAPSE]
2026-05-24 09:15:54 +02:00
2026-05-22 11:00:22 +02:00
tub_intricated:
2026-05-25 17:05:06 +02:00
_Astrosynapse: TUB [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.
snippets:
# &Fixed
Excitation-possible: CONTEXTOR [RF: active 60x]
# &ActivateAstroPostPre
Excitation_bind: BINDER [RF: active 6x]
ClearTraces: ACCUMULATOR [RF: active 6x]
Excitation_unbind: BINDER [RF: active 6x]
2026-05-22 11:00:22 +02:00
```
2026-05-25 17:05:06 +02:00
### &Fixed
#### Excitation-possible
2026-05-22 11:00:22 +02:00
Qui devo capire queste tracce chi le lascia e se sono esclusive?
```Gen
2026-05-25 17:05:06 +02:00
CheckSynModification
2026-05-22 11:00:22 +02:00
2026-05-25 17:05:06 +02:00
in_context: &Fixed
2026-05-22 11:00:22 +02:00
condition: ???
out_context: ActivateAstroPostPre_ctx
condition: ( BadTraces fullness )
out_context: DeActivateAstroPostPre_ctx
```
2026-05-25 17:05:06 +02:00
### &ActivateAstroPostPre
#### Excitation-bind
2026-05-22 11:00:22 +02:00
Qui attiviamo la Syn collegando Pre e Post. Lo facciamo per tutte le relazioni fino a quando GoodTraces fullness
```Gen
2026-05-25 17:05:06 +02:00
ActivateAstroPostPre
2026-05-22 11:00:22 +02:00
2026-05-25 17:05:06 +02:00
in_context: &ActivateAstroPostPre
2026-05-22 11:00:22 +02:00
hypothesis: ( GoodTraces fullness ) AND NOT ( ASTROSYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
2026-05-24 09:15:54 +02:00
bind: [PRESYNAPSE_ALL increase, POSTSYNAPSE_ALL increase, ASTROSYNAPSE_ALL increase]
2026-05-22 11:00:22 +02:00
trace: None?
```
2026-05-25 17:05:06 +02:00
#### ClearTraces
2026-05-22 11:00:22 +02:00
```Gen
2026-05-25 17:05:06 +02:00
ClearTraces
2026-05-22 11:00:22 +02:00
in_context: ActivateAstroPostPre_ctx
hypothesis: GoodTraces NOT empty
action: GoodTraces decrease
trace: None?
```
2026-05-25 17:05:06 +02:00
#### Excitation-unbind
2026-05-22 11:00:22 +02:00
Qui deattiviamo la Syn
```Gen
2026-05-25 17:05:06 +02:00
DeActivateSynPostPre
2026-05-22 11:00:22 +02:00
# Devo essere sicuro di eliminare i 3 che sono collegati, non a caso.
in_context: DeActivateSynPostPre_ctx
hypothesis: (BadTraces fullness)
2026-05-24 09:15:54 +02:00
unbind: [PRESYNAPSE_ALL decrease, POSTSYNAPSE_ALL decrease, ASTROSYNAPSE_ALL decrease]
2026-05-22 11:00:22 +02:00
trace: None?
```