varie
This commit is contained in:
@@ -13,36 +13,38 @@ EXCITATION
|
|||||||
|
|
||||||
activity_scope: !NIGHT
|
activity_scope: !NIGHT
|
||||||
|
|
||||||
tub_passed:
|
tub_intricated:
|
||||||
_Presynapse: TUB [out.{}.{}.PRESYNAPSE]
|
_Presynapse: TUB [out.{}.{}.PRESYNAPSE]
|
||||||
_Postsynapse: TUB [in.{}.{}.POSTSYNAPSE]
|
_Postsynapse: TUB [in.{}.{}.POSTSYNAPSE]
|
||||||
|
# Qui il modulo interno TUB trova la PRESYNAPSE come istanziazione e la intrica con _Presynapse
|
||||||
|
|
||||||
tub_intricated:
|
_Astrosynapse: TUB [ASTROCYTE.ASTROSYNAPSE]
|
||||||
_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.
|
# 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:
|
snippets:
|
||||||
|
|
||||||
# &Fixed
|
# &Fixed
|
||||||
Excitation-possible: CONTEXTOR [RF: active 60x]
|
@: CONTEXTOR [snip: Excitation_possible, RF: active 60x]
|
||||||
|
|
||||||
# &ActivateAstroPostPre
|
# &ActivateAstroPostPre
|
||||||
Excitation_bind: BINDER [RF: active 6x]
|
@: BINDER [snip: Excitation_bind, RF: active 6x]
|
||||||
ClearTraces: ACCUMULATOR [RF: active 6x]
|
@: ACCUMULATOR [snip: ClearTraces, RF: active 6x]
|
||||||
Excitation_unbind: BINDER [RF: active 6x]
|
@: BINDER [snip: Excitation_unbind, RF: active 6x]
|
||||||
```
|
```
|
||||||
|
|
||||||
### &Fixed
|
### &Fixed
|
||||||
|
|
||||||
#### Excitation-possible
|
#### Excitation_possible
|
||||||
|
|
||||||
Qui devo capire queste tracce chi le lascia e se sono esclusive?
|
Qui devo capire queste tracce chi le lascia e se sono esclusive?
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
CheckSynModification
|
Excitation_possible
|
||||||
|
|
||||||
in_context: &Fixed
|
in_context: &Fixed
|
||||||
|
|
||||||
condition: ???
|
condition: ???
|
||||||
out_context: ActivateAstroPostPre_ctx
|
out_context: &ActivateAstroPostPre
|
||||||
|
|
||||||
condition: ( BadTraces fullness )
|
condition: ( BadTraces fullness )
|
||||||
out_context: DeActivateAstroPostPre_ctx
|
out_context: DeActivateAstroPostPre_ctx
|
||||||
@@ -50,17 +52,17 @@ CheckSynModification
|
|||||||
|
|
||||||
### &ActivateAstroPostPre
|
### &ActivateAstroPostPre
|
||||||
|
|
||||||
#### Excitation-bind
|
#### Excitation_bind
|
||||||
|
|
||||||
Qui attiviamo la Syn collegando Pre e Post. Lo facciamo per tutte le relazioni fino a quando GoodTraces fullness
|
Qui attiviamo la Syn collegando Pre e Post. Lo facciamo per tutte le relazioni fino a quando GoodTraces fullness
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
ActivateAstroPostPre
|
Excitation_bind
|
||||||
|
|
||||||
in_context: &ActivateAstroPostPre
|
in_context: &ActivateAstroPostPre
|
||||||
|
|
||||||
hypothesis: ( GoodTraces fullness ) AND NOT ( ASTROSYNAPSE full ) AND NOT ( PRESYNAPSE full ) AND NOT ( POSTSYNAPSE full)
|
hypothesis: ( GoodTraces fullness ) AND NOT ( _Astrosynapse full ) AND NOT ( _Presynapse full ) AND NOT ( _Postsynapse full)
|
||||||
bind: [PRESYNAPSE_ALL increase, POSTSYNAPSE_ALL increase, ASTROSYNAPSE_ALL increase]
|
bind: [_Presynapse increase, _Postsynapse increase, _Astrosynapse increase]
|
||||||
trace: None?
|
trace: None?
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -69,22 +71,26 @@ ActivateAstroPostPre
|
|||||||
```Gen
|
```Gen
|
||||||
ClearTraces
|
ClearTraces
|
||||||
|
|
||||||
in_context: ActivateAstroPostPre_ctx
|
in_context: &ActivateAstroPostPre
|
||||||
|
|
||||||
hypothesis: GoodTraces NOT empty
|
hypothesis: GoodTraces NOT empty
|
||||||
action: GoodTraces decrease
|
action: GoodTraces decrease
|
||||||
trace: None?
|
trace: None?
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Excitation-unbind
|
#### Excitation_unbind
|
||||||
|
|
||||||
Qui deattiviamo la Syn
|
Qui deattiviamo la Syn
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
DeActivateSynPostPre
|
Excitation_unbind
|
||||||
|
|
||||||
# Devo essere sicuro di eliminare i 3 che sono collegati, non a caso.
|
# 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.
|
||||||
in_context: DeActivateSynPostPre_ctx
|
|
||||||
|
in_context: &DeActivateSynPostPre
|
||||||
|
|
||||||
hypothesis: (BadTraces fullness)
|
hypothesis: (BadTraces fullness)
|
||||||
unbind: [PRESYNAPSE_ALL decrease, POSTSYNAPSE_ALL decrease, ASTROSYNAPSE_ALL decrease]
|
unbind: [_Presynapse decrease, _Postsynapse decrease, _Astrosynapse decrease]
|
||||||
trace: None?
|
trace: None?
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user