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

112 lines
2.7 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-26 13:02:26 +02:00
tub_intricated:
2026-05-28 11:46:31 +02:00
_Presynapse: TUB [in]
2026-05-25 17:05:06 +02:00
_Presynapse: TUB [out.{}.{}.PRESYNAPSE]
_Postsynapse: TUB [in.{}.{}.POSTSYNAPSE]
2026-05-26 13:02:26 +02:00
# Qui il modulo interno TUB trova la PRESYNAPSE come istanziazione e la intrica con _Presynapse
2026-05-24 09:15:54 +02:00
2026-05-26 13:02:26 +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.
2026-05-25 17:05:06 +02:00
snippets:
# &Fixed
2026-05-26 13:02:26 +02:00
@: CONTEXTOR [snip: Excitation_possible, RF: active 60x]
2026-05-25 17:05:06 +02:00
# &ActivateAstroPostPre
2026-05-26 13:02:26 +02:00
@: BINDER [snip: Excitation_bind, RF: active 6x]
@: ACCUMULATOR [snip: ClearTraces, RF: active 6x]
@: BINDER [snip: Excitation_unbind, RF: active 6x]
2026-05-22 11:00:22 +02:00
```
2026-05-25 17:05:06 +02:00
### &Fixed
2026-05-26 13:02:26 +02:00
#### 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-26 13:02:26 +02:00
Excitation_possible
2026-05-22 11:00:22 +02:00
2026-05-25 17:05:06 +02:00
in_context: &Fixed
2026-05-26 13:02:26 +02:00
2026-05-22 11:00:22 +02:00
condition: ???
2026-05-26 13:02:26 +02:00
out_context: &ActivateAstroPostPre
2026-05-22 11:00:22 +02:00
condition: ( BadTraces fullness )
out_context: DeActivateAstroPostPre_ctx
```
2026-05-25 17:05:06 +02:00
### &ActivateAstroPostPre
2026-05-26 13:02:26 +02:00
#### 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-26 13:02:26 +02:00
Excitation_bind
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
2026-05-26 13:02:26 +02:00
hypothesis: ( GoodTraces fullness ) AND NOT ( _Astrosynapse full ) AND NOT ( _Presynapse full ) AND NOT ( _Postsynapse full)
bind: [_Presynapse increase, _Postsynapse increase, _Astrosynapse increase]
2026-05-22 11:00:22 +02:00
trace: None?
2026-05-28 12:19:43 +02:00
hypothesis: ( GoodTraces fullness ) AND
2026-05-28 18:35:00 +02:00
( NOT _PrePostAstroSyn.PRESYNAPSE full ) AND
( NOT _PrePostAstroSyn.POSTSYNAPSE full ) AND
( NOT _PrePostAstroSyn.ASTROSYNAPSE full)
bind: [_PrePostAstroSyn.PRESYNAPSE, _PrePostAstroSyn.POSTSYNAPSE, _PrePostAstroSyn.ASTROSYNAPSE ]
2026-05-28 12:19:43 +02:00
trace: None?
action:
2026-05-28 18:35:00 +02:00
@: BIND [ syn: _synapse, pre: _PrePostAstroSyn.PRESYNAPSE, post: _PrePostAstroSyn.POSTSYNAPSE, ast: _PrePostAstroSyn.ASTROSYNAPSE ]
2026-05-22 11:00:22 +02:00
```
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
2026-05-26 13:02:26 +02:00
in_context: &ActivateAstroPostPre
2026-05-22 11:00:22 +02:00
hypothesis: GoodTraces NOT empty
action: GoodTraces decrease
trace: None?
```
2026-05-26 13:02:26 +02:00
#### Excitation_unbind
2026-05-22 11:00:22 +02:00
Qui deattiviamo la Syn
```Gen
2026-05-26 13:02:26 +02:00
Excitation_unbind
# Devo essere sicuro di eliminare i 3 che sono collegati, non a caso. Qui forse il Bind e' prima della ipotesi, perche' dobbiamo assicurarci ci sia una sinapsi da sciogliere.
2026-05-22 11:00:22 +02:00
2026-05-26 13:02:26 +02:00
in_context: &DeActivateSynPostPre
2026-05-22 11:00:22 +02:00
hypothesis: (BadTraces fullness)
2026-05-26 13:02:26 +02:00
unbind: [_Presynapse decrease, _Postsynapse decrease, _Astrosynapse decrease]
2026-05-22 11:00:22 +02:00
trace: None?
2026-05-26 13:02:26 +02:00
2026-05-28 12:19:43 +02:00
hypothesis: ( NOT _synapse empty )
action:
@: UNBIND [ syn: _synapse ]
2026-05-22 11:00:22 +02:00
```